Advertisement
Guest User

logcat

a guest
Jan 23rd, 2011
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. [manifest.xml]
  2. <?xml version="1.0" encoding="utf-8"?>
  3. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  4. package="com.app.jerdog.crcc"
  5. android:versionCode="1"
  6. android:versionName="1.0">
  7. <application android:icon="@drawable/icon" android:label="@string/app_name">
  8. <activity android:name=".mainActivity"
  9. android:label="@string/app_name">
  10. <intent-filter>
  11. <action android:name="android.intent.action.MAIN" />
  12. <category android:name="android.intent.category.LAUNCHER" />
  13. </intent-filter>
  14. </activity>
  15.  
  16. </application>
  17. <uses-sdk android:minSdkVersion="8" />
  18. <uses-permission android:name="android.permission.INTERNET" />
  19. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement