1 Star 0 Fork 17

eaglexmw / XEdXposed

forked from 刘蒙 / XEdXposed 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
build.gradle 2.00 KB
一键复制 编辑 原始数据 按行查看 历史
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
maven {
name "aliyunmaven"
url "https://maven.aliyun.com/repository/public"
}
maven {
name "aliyunGoogle"
url "https://maven.aliyun.com/repository/google"
}
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
ext {
templateRootPath = project(":edxp-core").projectDir.path + "/template_override/"
templateSystemPath = templateRootPath + "/system/"
templateSystemx86Path = templateRootPath + "/system_x86/"
templateFrameworkPath = templateRootPath + "/system/framework/"
templateLibPath = templateRootPath + "/system/lib/"
templateLib64Path = templateRootPath + "/system/lib64/"
templateEtcPath = templateRootPath + "/system/etc/"
FileTree tree = fileTree(dir: gradle.gradleUserHomeDir)
tree.include '**/HiddenapiStubs-1.0.2/jars/classes.jar'
for(File file:tree){
if(file!=null){
hiddenApiStubJarFilePath=file
println "hiddenApiStubJarFilePath"+hiddenApiStubJarFilePath
break
}
}
// hiddenApiStubJarFilePath = project(":hiddenapi-stubs").projectDir.absolutePath + "/libs/framework-stub.jar"
}
repositories {
maven {
name "aliyunmaven"
url "https://maven.aliyun.com/repository/public"
}
maven {
name "aliyunGoogle"
url "https://maven.aliyun.com/repository/google"
}
maven {
name "jitpack"
url 'https://jitpack.io'
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 23
targetSdkVersion = 28
}
1
https://gitee.com/eaglexmw/XEdXposed.git
git@gitee.com:eaglexmw/XEdXposed.git
eaglexmw
XEdXposed
XEdXposed
release

搜索帮助