VGVentures / slide_puzzle

MIT License
530 stars 362 forks source link

build: No MainActivity Present for Android builds #3

Closed kunalmanocha98 closed 2 years ago

kunalmanocha98 commented 2 years ago

Add MainActivity for the android builds

evkalinin commented 2 years ago

https://github.com/VeryGoodOpenSource/very_good_cli/issues/196#issuecomment-931435287

verygoodcore lowercase

renefloor commented 2 years ago

It is indeed fixed when you add the following file:

android/app/src/main/kotlin/com/example/verygoodcore/MainActivity.kt

package com.example.verygoodcore

import io.flutter.embedding.android.FlutterActivity

class MainActivity: FlutterActivity() {

}
SofieTorch commented 2 years ago

It's fixed now! in the last version of release the MainActivity.kt file was implemented :)

bselwe commented 2 years ago

Thanks all for the contribution! It's now solved in https://github.com/VGVentures/slide_puzzle/pull/6.