|
@@ -0,0 +1,43 @@
|
|
|
+
|
|
|
+
|
|
|
+App.info({
|
|
|
+ id: 'com.meteor.reactodos',
|
|
|
+ name: 'Reactodos',
|
|
|
+ description: 'Get your TODOs using a React UI',
|
|
|
+ author: 'OSInet',
|
|
|
+ email: 'support@osinet.fr',
|
|
|
+ website: 'http://www.osinet.fr'
|
|
|
+});
|
|
|
+
|
|
|
+
|
|
|
+App.icons({
|
|
|
+ 'android_ldpi' : 'splash/logo-osinet.png',
|
|
|
+ 'android_mdpi' : 'splash/logo-osinet.png',
|
|
|
+ 'android_hdpi' : 'splash/logo-osinet.png',
|
|
|
+ 'android_xhdpi' : 'splash/logo-osinet.png'
|
|
|
+});
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+App.setPreference('BackgroundColor', '0xff0000ff');
|
|
|
+App.setPreference('HideKeyboardFormAccessoryBar', true);
|
|
|
+App.setPreference('Orientation', 'default');
|
|
|
+App.setPreference('Orientation', 'all', 'ios');
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|