Changes in AndroidManifest.xml [76819ac:d936b97] in galcon-client
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
AndroidManifest.xml
r76819ac rd936b97 1 1 <?xml version="1.0" encoding="utf-8"?> 2 2 <manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.example.helloandroid"> 4 <application android:icon="@drawable/app_lunar_lander" android:label="@string/app_name"> 5 <activity android:name="Game"> 3 package="com.example.helloandroid" 4 android:versionCode="1" 5 android:versionName="1.0"> 6 <application android:icon="@drawable/icon" android:label="@string/app_name"> 7 <activity android:name=".HelloAndroid" 8 android:label="@string/app_name"> 6 9 <intent-filter> 7 10 <action android:name="android.intent.action.MAIN" /> 8 11 <category android:name="android.intent.category.LAUNCHER" /> 9 12 </intent-filter> 10 </activity> 13 </activity> 14 11 15 </application> 12 16 <uses-sdk android:minSdkVersion="7" /> 13 </manifest> 17 18 </manifest>
Note:
See TracChangeset
for help on using the changeset viewer.