代码拉取完成,页面将自动刷新
同步操作将从 WrBug/dumpDex 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
apply plugin: 'com.android.application'
android {
signingConfigs {
releaseConfig
}
compileSdkVersion 23
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "com.wrbug.dumpdex"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
cppFlags ""
}
}
ndk {
abiFilters "armeabi", "armeabi-v7a"
}
}
buildTypes {
debug {
versionNameSuffix "-debug"
if (signingConfigs.releaseConfig != null) {
signingConfig signingConfigs.releaseConfig
}
}
release {
minifyEnabled false
if (signingConfigs.releaseConfig != null) {
signingConfig signingConfigs.releaseConfig
}
}
}
externalNativeBuild {
cmake {
path "CMakeLists.txt"
}
}
}
Properties props = new Properties()
def propFile = file('../signing.properties')
if (propFile.canRead()) {
props.load(new FileInputStream(propFile))
if (props != null &&
props.containsKey('SIGN_FILE') && props.containsKey('SIGN_PASSWORD') &&
props.containsKey('KEY_ALIAS') && props.containsKey('KEY_PASSWORD')) {
android.signingConfigs.releaseConfig.storeFile = file(props['SIGN_FILE'])
android.signingConfigs.releaseConfig.storePassword = props['SIGN_PASSWORD']
android.signingConfigs.releaseConfig.keyAlias = props['KEY_ALIAS']
android.signingConfigs.releaseConfig.keyPassword = props['KEY_PASSWORD']
} else {
println 'release build not found signing properties'
android.buildTypes.release.signingConfig = null
}
} else {
println 'release build not found signing file'
android.buildTypes.release.signingConfig = null
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
provided 'de.robv.android.xposed:api:82'
compile 'com.jaredrummler:android-shell:1.0.0'
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。