31 lines
1020 B
XML
Executable File
31 lines
1020 B
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.rockchip.graphics"
|
|
android:sharedUserId="android.uid.system"
|
|
android:versionCode="200"
|
|
android:versionName="2.0.0" >
|
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-sdk android:minSdkVersion="16" />
|
|
|
|
<application
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name" >
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:label="@string/app_name"
|
|
android:screenOrientation="landscape"
|
|
android:exported="true" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|