Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 16th, 2012  |  syntax: None  |  size: 1.70 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Android sdk Version not Compatable
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="unjustentertainment.fluidcount.com"
  4. android:versionCode="6"
  5. android:versionName="1.8" >
  6.  
  7. <uses-sdk android:minSdkVersion="4"/>
  8.  
  9. <application
  10.     android:icon="@drawable/icon"
  11.     android:label="@string/app_name" >
  12.     <activity
  13.         android:theme="@android:style/Theme.NoTitleBar"
  14.         android:label="@string/app_name"
  15.         android:name=".FluidCountActivity" >
  16.         <intent-filter >
  17.             <action android:name="android.intent.action.MAIN" />
  18.  
  19.             <category android:name="android.intent.category.LAUNCHER" />
  20.         </intent-filter>
  21.     </activity>
  22.        <activity
  23.  
  24.            android:theme="@android:style/Theme.NoTitleBar"
  25.         android:label="@string/app_name"
  26.         android:name=".MainScreen" >
  27.         <intent-filter >
  28.             <action android:name="unjustentertainment.fluidcount.com.CLEARSCREEN" />
  29.  
  30.             <category android:name="android.intent.category.DEFAULT" />
  31.         </intent-filter>
  32.     </activity>
  33.     <activity
  34.  
  35.         android:theme="@android:style/Theme.NoTitleBar"
  36.           android:label="@string/app_name"
  37.                 android:name=".Chart"/>
  38.  
  39.     <activity
  40.  
  41.         android:theme="@android:style/Theme.NoTitleBar"
  42.           android:label="@string/app_name"
  43.                 android:name=".Graphs"/>
  44.  
  45.     <activity
  46.  
  47.          android:name="com.google.ads.AdActivity"
  48.           android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
  49.           />
  50.  
  51. </application>
  52.  
  53.     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  54.     <uses-permission android:name="android.permission.INTERNET" />