merge loader into app
This commit is contained in:
parent
c1cdcb3428
commit
84eacc010f
|
|
@ -65,7 +65,6 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||||
implementation project(':loader')
|
|
||||||
implementation("androidx.core:core:1.3.2")
|
implementation("androidx.core:core:1.3.2")
|
||||||
implementation project(path: ':lspcore')
|
implementation project(path: ':lspcore')
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
package com.wind.xposed.entry.util;
|
package com.wind.xposed.entry.util;
|
||||||
|
|
||||||
import com.wind.xposed.entry.BuildConfig;
|
|
||||||
|
import com.storm.wind.xposed.BuildConfig;
|
||||||
|
|
||||||
public class XLog {
|
public class XLog {
|
||||||
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
/build
|
|
||||||
|
|
@ -1,29 +0,0 @@
|
||||||
apply plugin: 'com.android.library'
|
|
||||||
|
|
||||||
android {
|
|
||||||
compileSdkVersion 30
|
|
||||||
|
|
||||||
defaultConfig {
|
|
||||||
minSdkVersion rootProject.ext.androidMinSdkVersion
|
|
||||||
targetSdkVersion rootProject.ext.androidTargetSdkVersion
|
|
||||||
versionCode 1
|
|
||||||
versionName "1.0"
|
|
||||||
}
|
|
||||||
buildTypes {
|
|
||||||
debug {
|
|
||||||
debuggable true
|
|
||||||
minifyEnabled false
|
|
||||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
||||||
}
|
|
||||||
release {
|
|
||||||
debuggable false
|
|
||||||
minifyEnabled true
|
|
||||||
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
dependencies {
|
|
||||||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
||||||
implementation project(':lspcore')
|
|
||||||
}
|
|
||||||
|
|
@ -1,16 +0,0 @@
|
||||||
#-keep class com.wind.xposed.entry.XposedModuleEntry {
|
|
||||||
# public <init>();
|
|
||||||
# public void init();
|
|
||||||
#}
|
|
||||||
#-keep class de.robv.android.xposed.**{*;}
|
|
||||||
#-keep class com.swift.sandhook.**{*;}
|
|
||||||
#-keep class com.swift.sandhook.xposedcompat.**{*;}
|
|
||||||
#
|
|
||||||
#-dontwarn de.robv.android.xposed.XposedHelper
|
|
||||||
-keep class com.wind.xposed.entry.MMPEntry {
|
|
||||||
public <init>();
|
|
||||||
public void initAndLoadModules();
|
|
||||||
}
|
|
||||||
-keep class de.robv.android.xposed.**{*;}
|
|
||||||
|
|
||||||
-dontwarn de.robv.android.xposed.XposedHelper
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
|
||||||
package="com.wind.xposed.entry">
|
|
||||||
|
|
||||||
<uses-sdk tools:overrideLibrary="de.robv.android.xposed" />
|
|
||||||
<application
|
|
||||||
android:allowBackup="true"
|
|
||||||
android:supportsRtl="true"></application>
|
|
||||||
|
|
||||||
</manifest>
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
<resources>
|
|
||||||
<string name="app_name">library</string>
|
|
||||||
</resources>
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
include ':app'
|
include ':app'
|
||||||
rootProject.name='MMPLoader'
|
rootProject.name='MMPLoader'
|
||||||
include ':loader'
|
|
||||||
include ':lspcore'
|
include ':lspcore'
|
||||||
project(':lspcore').projectDir = new File('mmp/core')
|
project(':lspcore').projectDir = new File('mmp/core')
|
||||||
include ':hiddenapi-stubs'
|
include ':hiddenapi-stubs'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue