|
| 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 | + |
| 28 | + <activity |
| 29 | + android:name="com.tns.NativeScriptActivity" |
| 30 | + android:label="@string/title_activity_kimera" |
| 31 | + android:configChanges="keyboardHidden|orientation|screenSize" |
| 32 | + android:theme="@style/LaunchScreenTheme"> |
| 33 | + |
| 34 | + <meta-data android:name="SET_THEME_ON_LAUNCH" android:resource="@style/AppTheme" /> |
| 35 | + |
| 36 | + <intent-filter> |
| 37 | + <action android:name="android.intent.action.MAIN" /> |
| 38 | + <category android:name="android.intent.category.LAUNCHER" /> |
| 39 | + </intent-filter> |
| 40 | + </activity> |
| 41 | + <activity android:name="com.tns.ErrorReportActivity"/> |
| 42 | + </application> |
| 43 | +</manifest> |
0 commit comments