merge loader into app

This commit is contained in:
327135569 2021-04-08 10:32:35 +08:00
parent c1cdcb3428
commit 84eacc010f
17 changed files with 2 additions and 62 deletions

View File

@ -65,7 +65,6 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(':loader')
implementation("androidx.core:core:1.3.2")
implementation project(path: ':lspcore')
}

View File

@ -1,6 +1,7 @@
package com.wind.xposed.entry.util;
import com.wind.xposed.entry.BuildConfig;
import com.storm.wind.xposed.BuildConfig;
public class XLog {

1
loader/.gitignore vendored
View File

@ -1 +0,0 @@
/build

View File

@ -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')
}

View File

@ -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

View File

@ -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>

View File

@ -1,3 +0,0 @@
<resources>
<string name="app_name">library</string>
</resources>

View File

@ -1,6 +1,5 @@
include ':app'
rootProject.name='MMPLoader'
include ':loader'
include ':lspcore'
project(':lspcore').projectDir = new File('mmp/core')
include ':hiddenapi-stubs'