I tried to build x64-bit apk file using gradle method from this link, but I got armv7 and x86 build only.
I tried to analyzed every apk I build, none them shown any hint of x64 version. Following is my app's gradle,
android {
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
jniLibs.srcDirs = ['libs']
}
}
defaultConfig {
ndk.abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'
versionCode cdvVersionCode ?: new BigInteger("" + privateHelpers.extractIntFromManifest("versionCode"))
applicationId privateHelpers.extractStringFromManifest("package")
if (cdvMinSdkVersion != null) {
minSdkVersion cdvMinSdkVersion
}
}
lintOptions {
abortOnError false;
}
compileSdkVersion cdvCompileSdkVersion
buildToolsVersion cdvBuildToolsVersion
if (Boolean.valueOf(cdvBuildMultipleApks)) {
flavorDimensions "default"
productFlavors {
armv7 {
versionCode defaultConfig.versionCode*10 + 2
ndk {
abiFilters "armeabi-v7a", ""
}
}
x86 {
versionCode defaultConfig.versionCode*10 + 4
ndk {
abiFilters "x86", ""
}
}
arm64 {
versionCode defaultConfig.versionCode*10 + 6
ndk {
abiFilters "arm64-v8a", ""
}
}
x86_64 {
versionCode defaultConfig.versionCode*10 + 9
ndk {
abiFilters "x86_64", ""
}
}
all {
ndk {
abiFilters "all", ""
}
}
}
}
I also did followed the steps of accepted answer from this link. Am I missing something? My Meteor version is 1.8.1 . Please let me know, if you guys need any other info related with as I'm new at this platform. Tq