Added @suppresslint markers

This commit is contained in:
2013-06-14 15:12:32 -04:00
parent 240ff7fcb1
commit a83d85b143
3 changed files with 5 additions and 3 deletions

View File

@@ -4,5 +4,6 @@
<classpathentry kind="src" path="gen"/> <classpathentry kind="src" path="gen"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/>
<classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/> <classpathentry kind="con" path="com.android.ide.eclipse.adt.LIBRARIES"/>
<classpathentry exported="true" kind="con" path="com.android.ide.eclipse.adt.DEPENDENCIES"/>
<classpathentry kind="output" path="bin/classes"/> <classpathentry kind="output" path="bin/classes"/>
</classpath> </classpath>

View File

@@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.TwentyCode.android.ExaltedDice" package="com.TwentyCode.android.ExaltedDice"
android:installLocation="auto" android:installLocation="auto"
android:versionCode="85" android:versionCode="89"
android:versionName="5dd35f3" > android:versionName="240ff7f" >
<uses-sdk android:minSdkVersion="7" /> <uses-sdk android:minSdkVersion="7" />

View File

@@ -6,6 +6,7 @@
*/ */
package com.TwentyCode.android.ExaltedDice; package com.TwentyCode.android.ExaltedDice;
import android.annotation.SuppressLint;
import android.app.ActionBar; import android.app.ActionBar;
import android.content.Intent; import android.content.Intent;
import android.content.pm.PackageInfo; import android.content.pm.PackageInfo;
@@ -73,7 +74,7 @@ public class Settings extends PreferenceActivity implements OnPreferenceClickLis
* (non-Javadoc) * (non-Javadoc)
* @see android.preference.PreferenceActivity#onCreate(android.os.Bundle) * @see android.preference.PreferenceActivity#onCreate(android.os.Bundle)
*/ */
@Override @SuppressLint("NewApi") @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
//load preferences xml. this load relies on only wether the app is full or not. it will show the check license option if full and leave it out if lite //load preferences xml. this load relies on only wether the app is full or not. it will show the check license option if full and leave it out if lite