In the flutter app root,
Follow android/app/src/main/kotlin/your package/
, then you'll see MainActivity
.
Just create a class which is inherits from FlutterApplication
in same path of MainActivity
class CustomApplication : FlutterApplication {
override fun onCreate() {
super.onCreate()
// Paste here the integration codes of instabug
}
}
Then go to Manifest, android/app/src/main/kotlin/your package/AndroidManifest.xml
, and modify application section
<application
android:name=".CustomApplication"
...
</application>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…