-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathAndroidManifest.xml
26 lines (25 loc) · 1.58 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.elegosproject.romupdater"
android:versionName="1.14.2" android:versionCode="25">
<application
android:label="@string/app_name"
android:icon="@drawable/ic_launcher_romupdater">
<activity android:name=".ROMUpdater"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".VersionSelector" android:label="@string/view_available_updates" android:configChanges="orientation" />
<activity android:name=".VersionsList" android:label="@string/view_versions_list" android:configChanges="orientation" />
<activity android:name=".Preferences" android:label="@string/view_preferences" android:configChanges="orientation" />
<activity android:name=".RepositoriesList" android:label="@string/view_repositories" android:configChanges="orientation" />
<activity android:name=".Restore" android:label="@string/view_restore" android:configChanges="orientation" />
<activity android:name=".Downloads" android:label="@string/view_downloads" android:configChanges="orientation" />
</application>
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
</manifest>