File tree 1 file changed +40
-0
lines changed
app/App_Resources/Android
1 file changed +40
-0
lines changed Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <manifest xmlns : android =" http://schemas.android.com/apk/res/android"
3
+ package=" __PACKAGE__"
4
+ android:versionCode=" 1"
5
+ android:versionName=" 1.0" >
6
+
7
+ <supports-screens
8
+ android:smallScreens=" true"
9
+ android:normalScreens=" true"
10
+ android:largeScreens=" true"
11
+ android:xlargeScreens=" true" />
12
+
13
+ <uses-sdk
14
+ android:minSdkVersion=" 17"
15
+ android:targetSdkVersion=" __APILEVEL__" />
16
+
17
+ <uses-permission android : name =" android.permission.READ_EXTERNAL_STORAGE" />
18
+ <uses-permission android : name =" android.permission.WRITE_EXTERNAL_STORAGE" />
19
+ <uses-permission android : name =" android.permission.INTERNET" />
20
+
21
+ <application
22
+ android:name=" com.tns.NativeScriptApplication"
23
+ android:allowBackup=" true"
24
+ android:icon=" @drawable/icon"
25
+ android:label=" @string/app_name"
26
+ android:theme=" @style/AppTheme" >
27
+ <activity
28
+ android:name=" com.tns.NativeScriptActivity"
29
+ android:label=" @string/title_activity_kimera"
30
+ android:configChanges=" keyboardHidden|orientation|screenSize" >
31
+
32
+ <intent-filter >
33
+ <action android : name =" android.intent.action.MAIN" />
34
+
35
+ <category android : name =" android.intent.category.LAUNCHER" />
36
+ </intent-filter >
37
+ </activity >
38
+ <activity android : name =" com.tns.ErrorReportActivity" />
39
+ </application >
40
+ </manifest >
You can’t perform that action at this time.
0 commit comments