goldfish07 / ResChiper

AAB Resource Obfuscation Tool for Android
Apache License 2.0
65 stars 9 forks source link

运行./gradlew clean :app:resChiperDebug 命令之后,直接就完成了aab的打包,那我的签名秘钥该如何植入,求大哥告知,纯新人 #9

Open liujje opened 5 months ago

liujje commented 5 months ago

android { namespace 'com.dating.test' compileSdk 33

defaultConfig {
    applicationId "com.dating.test"
    minSdk 20
    targetSdk 33
    versionCode 1
    versionName "1.0"

    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
release {
    storeFile file('app.jks')
    storePassword '123456'
    keyPassword '123456'
    keyAlias 'key0'
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        signingConfig signingConfigs.release
    }
}
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}

}这样可以吗

liujje commented 5 months ago

解决了

goldfish07 commented 4 months ago

android { namespace 'com.dating.test' compileSdk 33

defaultConfig {
    applicationId "com.dating.test"
    minSdk 20
    targetSdk 33
    versionCode 1
    versionName "1.0"

    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
release {
    storeFile file('app.jks')
    storePassword '123456'
    keyPassword '123456'
    keyAlias 'key0'
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        signingConfig signingConfigs.release
    }
}
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}

}这样可以吗

是的,这是正确的 Yes, this is correct