FARPlatformAndroidManifest constructor

FARPlatformAndroidManifest(
  1. String dirPath,
  2. String newAppName,
  3. String newPackage
)

Implementation

FARPlatformAndroidManifest(this.dirPath, this.newAppName, this.newPackage) {
  mainAndroidManifestFile = File('$dirPath/android/app/src/main/AndroidManifest.xml');
  debugAndroidManifestFile = File('$dirPath/android/app/src/debug/AndroidManifest.xml');
  profileAndroidManifestFile = File('$dirPath/android/app/src/profile/AndroidManifest.xml');
  valuesDir = Directory('$dirPath/android/app/src/main/res/values');
}