Closed gmemicarra closed 4 months ago
Hello @gmemicarra,
Try this configuration:
Worked for me
Regards
Hello @gmemicarra,
Try this configuration: Worked for me
Regards
Thank you, it worked! Sadly this way i'm losing a few users, but it works.
I read that someone used another way, he wrote this code, do you know where could i try inputting this code to see if it works?: Is it in the build.gradle or where could i try? Thanks debug { // fix Failed to transform firebase-auth-22.3.1.aar minifyEnabled true signingConfig signingConfigs.debug } https://stackoverflow.com/questions/77416448/failed-to-transform-firebase-auth-22-2-0-aar
@gmemicarra
Ok, exists a way, but I can't implement it directly on the extensions, so I will write it here, eventually all the users should use min: 24.
1) Open C:\ProgramData\GameMakerStudio2\Cache\runtimes\runtime-2024.6.1.208\android\runner\ProjectFiles\build.gradle
2) Insert this code in the line 49 (after buildTypes finalizes )
buildTypes {
debug {
signingConfig signingConfigs.release
minifyEnabled ${YYAndroidProGuardMinifyEnabled}
shrinkResources ${YYAndroidProGuardShrinkResources}
getIsDefault().set(true)
ndk {
debugSymbolLevel 'FULL'
}
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'),'proguard-rules.pro'
consumerProguardFiles 'proguard-rules.pro'
}
}
3) Check minifyEnabled
Let me know if work for you.
@jzavala-YYG Awesome! It works now with older SDK! Thank you very much for your help!
The build.gradle code is like this now:
Hello, when i try to compile using the UnityAds mediation extension, it throws this error. It builds fine using only the AdMob extension. Updated all my Build Tools, IDE, Runtime, and still no luck:
Build Tools: 34.0.0 IDE: 2024.6.1.160 Runtime: 2024.6.1.208 NDK: 26.3.11579264
ERROR:D8: com.android.tools.r8.kotlin.H ERROR:D8: com.android.tools.r8.kotlin.H ERROR:D8: com.android.tools.r8.kotlin.H
I don't know what else to do, any help appreciated!