サンプルアプリケーションの場合、これは私のbuild.gradleです。私のコードは、私が彼らに与えられましたが、私はそれをしたいdoes'tとして全てclass's
、variable's
は、constant's`名前が同じで逆コンパイル後の手段をobfuscated.?that取得されていない理由Android AppのProguard難読化機能はありません
{
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
defaultConfig {
applicationId "com.example.credila.testndk"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
cppFlags "-frtti"
}
}
}
buildTypes {
release {
debuggable false
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
externalNativeBuild {
cmake {
path "CMakeLists.txt"
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
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:25.1.0'
testCompile 'junit:junit:4.12'
}
}
はしかし、知りません。私を助けてください。
あなたはリリース構成を作成してもよろしいですか? –
proguard-rules.proで何が得られますか? –
@VladMatvienko、 gビルド設定 – Vasu