31 lines
972 B
XML
31 lines
972 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.cmb.googledorks"
|
|
android:versionCode="1"
|
|
android:versionName="1.0"
|
|
android:installLocation="auto">
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="11"
|
|
android:targetSdkVersion="19" />
|
|
|
|
<application
|
|
android:icon="@drawable/ic_launcher"
|
|
android:allowBackup="true"
|
|
android:label="@string/app_name"
|
|
android:logo="@drawable/cube">
|
|
<activity
|
|
android:label="@string/app_name"
|
|
android:name=".MainActivity" >
|
|
<intent-filter >
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity android:name="com.cmb.googledorks.SettingsActivity" />
|
|
</application>
|
|
|
|
</manifest>
|