Home > Mobile >  Compiled using AndroidKiller happen, the great god give directions
Compiled using AndroidKiller happen, the great god give directions

Time:10-12

Are compiling APK, please wait...
I: Using Apktool 2.3.2
I: Smaling smali folder into classes. Dex...
I: Building resources...
W: D: \ AndroidKiller \ AndroidKiller \ projects \ QZBCS \ Project \ AndroidManifest XML: 1: error: No resource identifier found the for attribute 'compileSdkVersion in package' android '
W:
W: D: \ AndroidKiller \ AndroidKiller \ projects \ QZBCS \ Project \ AndroidManifest XML: 1: error: No resource identifier found the for attribute 'compileSdkVersionCodename in package' android '
W:
brut.androlib.AndrolibException: brut.common.BrutException: could not exec (exit code=1): [C:\Users\user\AppData\Local\Temp\brut_util_Jar_14751065481811145841.tmp, p, --forced-package-id, 127, --min-sdk-version, 14, --target-sdk-version, 26, --version-code, 1, --version-name, 1.5, --no-version-vectors, -F, C:\Users\user\AppData\Local\Temp\APKTOOL5862860070670058917.tmp, -0, xml, -0, arsc, -0, ini, -0, txt, -0, zip, -0, plist, -0, PNG, -0, lua, -0, arsc, -I, C:\Users\user\AppData\Local\apktool\framework\1.apk, -S, D:\AndroidKiller\AndroidKiller\projects\qzbcs\Project\res, -M, D:\AndroidKiller\AndroidKiller\projects\qzbcs\Project\AndroidManifest.xml]
APK compiled failure, can't continue to the next step the signature!

CodePudding user response:

Latest version compileSdkVersion, versionCode and versionName AndroidManifest. In the XML declaration, the configuration in the gradle
 
Android {
CompileSdkVersion 28
DefaultConfig {
ApplicationId "XXX. XXX. XXX ("
MinSdkVersion 19
TargetSdkVersion 28
VersionCode 1
VersionName "1.0"
}
BuildTypes {
Release {
MinifyEnabled false
ProguardFiles getDefaultProguardFile (' proguard - android - optimize. TXT '), 'proguard - rules. Pro'
}
}

SourceSets {
The main {
JniLibs. SrcDirs=[' libs']
}
}

LintOptions {
Disable 'GoogleAppIndexingWarning'
}
}
  • Related