'Convert 32 Bit Android Project to 64 Bit
This Is my gradle
android {
compileSdkVersion 30
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "xxx.xxxx.xxxx"
minSdkVersion 21
targetSdkVersion 30
versionCode 5
versionName "1.0.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
ndk.abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
I added this line in my gradle -> defaultCongfig
ndk.abiFilters 'armeabi-v7a','arm64-v8a','x86','x86_64'
But still my project support only 32 bit.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
