https://github.com/limbenjamin/tapjacking
Raw File
Tip revision: 5f57cc430a886bba87bbee40bf0849d472c3f31f authored by Benjamin Lim on 19 April 2015, 00:09:58 UTC
Public release
Tip revision: 5f57cc4
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
	package="com.limbenjamin.csci4531" android:versionCode="2"
	android:versionName="2.0">
	<uses-sdk android:minSdkVersion="7" />

	<application android:icon="@drawable/icon" android:label="@string/app_name">
		<activity android:name="com.limbenjamin.csci4531.Main" android:label="@string/app_name">
			<intent-filter>
				<action android:name="android.intent.action.MAIN" />
				<category android:name="android.intent.category.LAUNCHER" />
			</intent-filter>
		</activity>
		<service android:name="com.limbenjamin.csci4531.BackgroundInstallerService">
			<intent-filter>
				<action android:name="com.limbenjamin.csci4531.BackgroundInstallerService" />
			</intent-filter>
		</service>
	</application>

</manifest>
back to top