Fix release build
This commit is contained in:
parent
369b820ac8
commit
fd3e495e41
|
|
@ -1 +1,2 @@
|
||||||
|
android.enableR8.fullMode=true
|
||||||
android.useAndroidX=true
|
android.useAndroidX=true
|
||||||
|
|
|
||||||
|
|
@ -15,8 +15,8 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
buildFeatures {
|
buildFeatures {
|
||||||
androidResources = false
|
|
||||||
buildConfig = false
|
buildConfig = false
|
||||||
|
resValues = false
|
||||||
}
|
}
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
|
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<manifest />
|
|
||||||
|
|
@ -15,8 +15,8 @@ android {
|
||||||
}
|
}
|
||||||
|
|
||||||
buildFeatures {
|
buildFeatures {
|
||||||
androidResources = false
|
|
||||||
buildConfig = false
|
buildConfig = false
|
||||||
|
resValues = false
|
||||||
}
|
}
|
||||||
|
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<manifest />
|
|
||||||
|
|
@ -3,6 +3,8 @@ package io.github.libxposed.service;
|
||||||
import android.os.IBinder;
|
import android.os.IBinder;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
|
|
@ -16,12 +18,12 @@ public final class XposedServiceHelper {
|
||||||
*
|
*
|
||||||
* @param service Service instance
|
* @param service Service instance
|
||||||
*/
|
*/
|
||||||
void onServiceBind(XposedService service);
|
void onServiceBind(@NonNull XposedService service);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Callback when the service is dead
|
* Callback when the service is dead
|
||||||
*/
|
*/
|
||||||
void onServiceDied(XposedService service);
|
void onServiceDied(@NonNull XposedService service);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final String TAG = "XposedServiceHelper";
|
private static final String TAG = "XposedServiceHelper";
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue