Open /android/app/src/main/AndroidManifest.xml
and specify your:
- YOUR_PACKAGE_NAME
- YOUR_APPLICATION_NAME
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="YOUR_PACKAGE_NAME">
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
In most cases you can leave this as-is, but you if you want to provide
additional functionality it is fine to subclass or reimplement
FlutterApplication and put your custom class here. -->
<application
android:name="io.flutter.app.FlutterApplication"
android:label="YOUR_APPLICATION_NAME"
android:icon="@mipmap/ic_launcher">
In the above code,
replace YOUR_PACKAGE_NAME
with something like com.company.projectify
and
replace YOUR_APPLICATION_NAME
with something like Projectify