aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay Nair <phenax5@gmail.com>2020-06-03 00:24:43 +0530
committerAkshay Nair <phenax5@gmail.com>2020-06-03 00:24:43 +0530
commit091e8c5334ab4459f1efef067bfc78beaa2fae6d (patch)
treedd4a70e9bd5abdaaacaeedebb7c8c213acd9a844
parent68654e9c7bdecd09d494e1919f5490c430044dfa (diff)
downloaddaft-launcher-091e8c5334ab4459f1efef067bfc78beaa2fae6d.tar.gz
daft-launcher-091e8c5334ab4459f1efef067bfc78beaa2fae6d.zip
Application name changes
-rw-r--r--.flutter-plugins-dependencies2
-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
-rw-r--r--ios/Runner.xcodeproj/project.pbxproj6
-rw-r--r--pubspec.lock7
-rw-r--r--pubspec.yaml8
9 files changed, 13 insertions, 26 deletions
diff --git a/.flutter-plugins-dependencies b/.flutter-plugins-dependencies
index 4e3c929..fff38d9 100644
--- a/.flutter-plugins-dependencies
+++ b/.flutter-plugins-dependencies
@@ -1 +1 @@
-{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[],"android":[{"name":"android_intent","path":"/home/akshayn/.pub-cache/hosted/pub.dartlang.org/android_intent-0.3.7+2/","dependencies":[]},{"name":"device_apps","path":"/home/akshayn/.pub-cache/hosted/pub.dartlang.org/device_apps-1.0.9/","dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"android_intent","dependencies":[]},{"name":"device_apps","dependencies":[]}],"date_created":"2020-06-02 23:56:41.767586","version":"1.19.0-2.0.pre.214"} \ No newline at end of file
+{"info":"This is a generated file; do not edit or check into version control.","plugins":{"ios":[],"android":[{"name":"android_intent","path":"/home/akshayn/.pub-cache/hosted/pub.dartlang.org/android_intent-0.3.7+2/","dependencies":[]},{"name":"device_apps","path":"/home/akshayn/.pub-cache/hosted/pub.dartlang.org/device_apps-1.0.9/","dependencies":[]}],"macos":[],"linux":[],"windows":[],"web":[]},"dependencyGraph":[{"name":"android_intent","dependencies":[]},{"name":"device_apps","dependencies":[]}],"date_created":"2020-06-03 00:24:24.078832","version":"1.19.0-2.0.pre.214"} \ No newline at end of file
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.
-->
diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj
index b707316..ca7791c 100644
--- a/ios/Runner.xcodeproj/project.pbxproj
+++ b/ios/Runner.xcodeproj/project.pbxproj
@@ -299,7 +299,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
- PRODUCT_BUNDLE_IDENTIFIER = com.example.owyn;
+ PRODUCT_BUNDLE_IDENTIFIER = io.github.phenax.owyn;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
@@ -431,7 +431,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
- PRODUCT_BUNDLE_IDENTIFIER = com.example.owyn;
+ PRODUCT_BUNDLE_IDENTIFIER = io.github.phenax.owyn;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@@ -458,7 +458,7 @@
"$(inherited)",
"$(PROJECT_DIR)/Flutter",
);
- PRODUCT_BUNDLE_IDENTIFIER = com.example.owyn;
+ PRODUCT_BUNDLE_IDENTIFIER = io.github.phenax.owyn;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
diff --git a/pubspec.lock b/pubspec.lock
index abf58a0..17d71db 100644
--- a/pubspec.lock
+++ b/pubspec.lock
@@ -43,13 +43,6 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "1.14.12"
- cupertino_icons:
- dependency: "direct main"
- description:
- name: cupertino_icons
- url: "https://pub.dartlang.org"
- source: hosted
- version: "0.1.3"
device_apps:
dependency: "direct main"
description:
diff --git a/pubspec.yaml b/pubspec.yaml
index 3577670..2228d29 100644
--- a/pubspec.yaml
+++ b/pubspec.yaml
@@ -27,12 +27,6 @@ dependencies:
device_apps: ^1.0.9
android_intent: ^0.3.7
-
-
- # The following adds the Cupertino Icons font to your application.
- # Use with the CupertinoIcons class for iOS style icons.
- cupertino_icons: ^0.1.3
-
dev_dependencies:
flutter_test:
sdk: flutter
@@ -46,7 +40,7 @@ flutter:
# The following line ensures that the Material Icons font is
# included with your application, so that you can use the icons in
# the material Icons class.
- uses-material-design: true
+ uses-material-design: false
# To add assets to your application, add an assets section, like this:
# assets: