Browse Source

Target SDK 28

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
master
Harsh Shandilya 6 years ago
committed by Jason A. Donenfeld
parent
commit
6efbf65405
3 changed files with 4 additions and 7 deletions
  1. +2
    -2
      app/build.gradle
  2. +1
    -4
      app/src/main/java/com/wireguard/android/QuickTileService.java
  3. +1
    -1
      build.gradle

+ 2
- 2
app/build.gradle View File

@@ -11,12 +11,12 @@ android {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
compileSdkVersion 27
compileSdkVersion 28
dataBinding.enabled true
defaultConfig {
applicationId 'com.wireguard.android'
minSdkVersion 21
targetSdkVersion 27
targetSdkVersion 28
versionCode 438
versionName '0.0.20180729'
buildConfigField 'int', 'MIN_SDK_VERSION', "$minSdkVersion.apiLevel"


+ 1
- 4
app/src/main/java/com/wireguard/android/QuickTileService.java View File

@@ -58,13 +58,10 @@ public class QuickTileService extends TileService {
return ret;
}

/* TODO: for Android P: Build.VERSION_CODES.P */
private static final int BUILD_VERSION_CODES_P = 28;

@SuppressWarnings("deprecation")
@Override
public void onCreate() {
if (Build.VERSION.SDK_INT >= BUILD_VERSION_CODES_P) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
iconOff = iconOn = Icon.createWithResource(this, R.drawable.ic_tile);
return;
}


+ 1
- 1
build.gradle View File

@@ -7,7 +7,7 @@ allprojects {

buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:3.1.3'
classpath 'com.android.tools.build:gradle:3.1.4'
}
repositories {
google()


Loading…
Cancel
Save