mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-26 06:11:19 +00:00
Fixed lint problems.
This commit is contained in:
parent
0ed561015c
commit
15f2d5e43f
3 changed files with 16 additions and 1 deletions
|
@ -17,7 +17,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
compile 'com.android.support:appcompat-v7:18.0.+'
|
||||
compile 'com.android.support:appcompat-v7:19.1.+'
|
||||
}
|
||||
|
||||
android {
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
package com.nutomic.syncthingandroid;
|
||||
|
||||
import android.annotation.SuppressLint;
|
||||
import android.annotation.TargetApi;
|
||||
import android.content.Intent;
|
||||
import android.net.Uri;
|
||||
import android.os.Build;
|
||||
|
@ -18,7 +20,13 @@ public class SettingsActivity extends PreferenceActivity {
|
|||
|
||||
private static final String SYNCTHING_VERSION_KEY = "syncthing_version";
|
||||
|
||||
/**
|
||||
* Loads layout, sets version from Rest API.
|
||||
*
|
||||
* Manual target API as we manually check if ActionBar is available (for ActionBar back button).
|
||||
*/
|
||||
@Override
|
||||
@TargetApi(11)
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
package com.nutomic.syncthingandroid;
|
||||
|
||||
import android.annotation.SuppressLint;
|
||||
import android.app.Activity;
|
||||
import android.app.AlertDialog;
|
||||
import android.content.ComponentName;
|
||||
|
@ -90,7 +91,13 @@ public class WebGuiActivity extends Activity {
|
|||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Initialize WebView.
|
||||
*
|
||||
* Ignore lint javascript warning as js is loaded only from our known, local service.
|
||||
*/
|
||||
@Override
|
||||
@SuppressLint("SetJavaScriptEnabled")
|
||||
public void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
getApplicationContext().startService(
|
||||
|
|
Loading…
Reference in a new issue