|
@@ -23,7 +23,7 @@ export default About = () => {
|
|
|
<Text style={styles.linkText} onPress={() => startPage(PageList.condition)}>Terms of Use</Text>
|
|
<Text style={styles.linkText} onPress={() => startPage(PageList.condition)}>Terms of Use</Text>
|
|
|
<Text style={styles.linkText} onPress={() => startPage(PageList.privacy)}>Privacy Policy</Text>
|
|
<Text style={styles.linkText} onPress={() => startPage(PageList.privacy)}>Privacy Policy</Text>
|
|
|
</View>
|
|
</View>
|
|
|
- <Text style={styles.copyright}>{'Copyright ' + /*app.versionName + ' Build ' + app.versionCode + */getYearRange()+' Strides Pte. Ltd.'}</Text>
|
|
|
|
|
|
|
+ <Text style={styles.copyright}>{'Copyright ' + /*app.versionName + ' Build ' + app.versionCode + */getYearRange()+' Strides YTL Pte. Ltd.'}</Text>
|
|
|
</View>
|
|
</View>
|
|
|
);
|
|
);
|
|
|
}
|
|
}
|
|
@@ -31,7 +31,7 @@ export default About = () => {
|
|
|
const getYearRange = () => {
|
|
const getYearRange = () => {
|
|
|
const y = new Date().getFullYear();
|
|
const y = new Date().getFullYear();
|
|
|
var r = '©' + author;
|
|
var r = '©' + author;
|
|
|
- if (y != author) {
|
|
|
|
|
|
|
+ if (y > author) {
|
|
|
r += '-' + y
|
|
r += '-' + y
|
|
|
}
|
|
}
|
|
|
return r;
|
|
return r;
|