aboutsummaryrefslogtreecommitdiff
path: root/android
diff options
context:
space:
mode:
Diffstat (limited to 'android')
-rw-r--r--android/app/build.gradle2
-rw-r--r--android/app/src/debug/AndroidManifest.xml2
-rw-r--r--android/app/src/main/AndroidManifest.xml8
-rw-r--r--android/app/src/main/kotlin/io/github/phenax/owyn/MainActivity.kt (renamed from android/app/src/main/kotlin/com/example/owyn/MainActivity.kt)2
-rw-r--r--android/app/src/profile/AndroidManifest.xml2
5 files changed, 8 insertions, 8 deletions
diff --git a/android/app/build.gradle b/android/app/build.gradle
index 9876c3f..89cc94c 100644
--- a/android/app/build.gradle
+++ b/android/app/build.gradle
@@ -38,7 +38,7 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
- applicationId "com.example.owyn"
+ applicationId "io.github.phenax.owyn"
minSdkVersion 16
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml
index ec5cd1d..bc5c886 100644
--- a/android/app/src/debug/AndroidManifest.xml
+++ b/android/app/src/debug/AndroidManifest.xml
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.example.owyn">
+ package="io.github.phenax.owyn">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml
index 3d9998a..cb0d355 100644
--- a/android/app/src/main/AndroidManifest.xml
+++ b/android/app/src/main/AndroidManifest.xml
@@ -1,11 +1,11 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.example.owyn">
+ package="io.github.phenax.owyn">
<!-- 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. -->
- <uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />
+ <!--<uses-permission android:name="android.permission.REQUEST_DELETE_PACKAGES" />-->
<application
android:name="io.flutter.app.FlutterApplication"
android:label="owyn"
@@ -36,8 +36,8 @@
/>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
- <action android:name="android.intent.action.DELETE" />
- <action android:name="android.intent.action.UNINSTALL_PACKAGE" />
+ <!--<action android:name="android.intent.action.DELETE" />-->
+ <!--<action android:name="android.intent.action.UNINSTALL_PACKAGE" />-->
<category android:name="android.intent.category.LAUNCHER"/>
<category android:name="android.intent.category.HOME" />
<category android:name="android.intent.category.DEFAULT" />
diff --git a/android/app/src/main/kotlin/com/example/owyn/MainActivity.kt b/android/app/src/main/kotlin/io/github/phenax/owyn/MainActivity.kt
index 44b98f2..c7c2676 100644
--- a/android/app/src/main/kotlin/com/example/owyn/MainActivity.kt
+++ b/android/app/src/main/kotlin/io/github/phenax/owyn/MainActivity.kt
@@ -1,4 +1,4 @@
-package com.example.owyn
+package io.github.phenax.owyn
import io.flutter.embedding.android.FlutterActivity
diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml
index ec5cd1d..bc5c886 100644
--- a/android/app/src/profile/AndroidManifest.xml
+++ b/android/app/src/profile/AndroidManifest.xml
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.example.owyn">
+ package="io.github.phenax.owyn">
<!-- Flutter needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.
-->