Closed ArZHa03 closed 6 months ago
I have the same problem. Is there a solution?
I have the same problem. Is there a solution?
dont have, after update version ... the problem just arrived. Before 0.3.16 version, i was work perfectly.
The same problem.
Fatal Exception: io.flutter.plugins.firebase.crashlytics.FlutterError: MissingPluginException(No implementation found for method init on channel com.rebeloid.unity_ads) at MethodChannel._invokeMethod(platform_channel.dart:332) at UnityAds.init(unity_ads.dart:34)
I solved like this
buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } }
Adding shrinkResources false
and minifyEnabled false
to the /android/app/build.gradle
file resolves the problem.
android {
...
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
shrinkResources false
minifyEnabled false
}
}
}
Describe the bug [ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled Exception: MissingPluginException(No implementation found for method init on channel com.rebeloid.unity_ads)
Details
unity_ads_plugin: ^0.3.16
implementation 'com.ironsource.adapters:unityadsadapter:4.3.39'
implementation 'com.unity3d.ads:unity-ads:4.11.3'
<uses-permission android:name="com.google.android.gms.permission.AD_ID"/>