kamrancr7
kamrancr7
following is my android/build.gradle: ``` // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { ext.kotlin_version = '1.3.50' apply from: rootProject.file('dependencies.gradle') repositories { google()...
following is my android/app/build.gradle: ``` def localProperties = new Properties() def localPropertiesFile = rootProject.file('local.properties') if (localPropertiesFile.exists()) { localPropertiesFile.withReader('UTF-8') { reader -> localProperties.load(reader) } } def taskRequests = getGradle().getStartParameter().getTaskRequests().toString() def isPlay...
that's my MainActivity.kt file: ``` class MainActivity:FlutterActivity() { override fun onCreate(savedInstanceState:Bundle?) { FlutterMain.startInitialization(this); super.onCreate(savedInstanceState) GeneratedPluginRegistrant.registerWith(this) Log.i("HomeActivity", "oncreate") MethodChannel(flutterView, CHANNEL).setMethodCallHandler { call, result -> if (call.method == "startNewActivity") { email =...
@nicowernli check the code now, and when i create a new project and used that package then it is working fine but when i used that package in my existing...
@jonasbark any solution?
@jonasbark Well it works fine when i create a new project but when i implement this in my existing project it crashes. What files you required to reproduce that one?
@jonasbark How can i share that? It's a big and private project
ok @jonasbark will share with you
yes i tested this on Oppo F7 but the same is working fine on Oppo F7 when i create a new project.