mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
25 lines
808 B
XML
Executable File
25 lines
808 B
XML
Executable File
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.example.app"
|
|
android:installLocation="auto"
|
|
android:versionCode="1"
|
|
android:versionName="0.1" >
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme" >
|
|
<activity
|
|
android:name=".GsonActivity"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|