add network permission, change package id

This commit is contained in:
Jan 2022-12-29 21:50:19 +01:00
parent 2acd655885
commit a2a2928ebc
Signed by: Lea
GPG key ID: 1BAFFE8347019C42
8 changed files with 12 additions and 11 deletions

View file

@ -44,7 +44,7 @@ android {
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.example.feet"
applicationId "xyz.janderedev.feet"
// You can update the following values to match your application needs.
// For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration.
minSdkVersion flutter.minSdkVersion

View file

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.feet">
package="xyz.janderedev.feet">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.

View file

@ -1,5 +1,6 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.feet">
package="xyz.janderedev.feet">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:label="feet"
android:name="${applicationName}"

View file

@ -1,4 +1,4 @@
package com.example.feet
package xyz.janderedev.feet
import io.flutter.embedding.android.FlutterActivity

View file

@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.feet">
package="xyz.janderedev.feet">
<!-- The INTERNET permission is required for development. Specifically,
the Flutter tool needs it to communicate with the running application
to allow setting breakpoints, to provide hot reload, etc.

View file

@ -296,7 +296,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.feet;
PRODUCT_BUNDLE_IDENTIFIER = xyz.janderedev.feet;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;
@ -424,7 +424,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.feet;
PRODUCT_BUNDLE_IDENTIFIER = xyz.janderedev.feet;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
@ -446,7 +446,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
PRODUCT_BUNDLE_IDENTIFIER = com.example.feet;
PRODUCT_BUNDLE_IDENTIFIER = xyz.janderedev.feet;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
SWIFT_VERSION = 5.0;

View file

@ -7,7 +7,7 @@ project(runner LANGUAGES CXX)
set(BINARY_NAME "feet")
# The unique GTK application identifier for this application. See:
# https://wiki.gnome.org/HowDoI/ChooseApplicationID
set(APPLICATION_ID "com.example.feet")
set(APPLICATION_ID "xyz.janderedev.feet")
# Explicitly opt in to modern CMake behaviors to avoid warnings with recent
# versions of CMake.

View file

@ -8,7 +8,7 @@
PRODUCT_NAME = feet
// The application's bundle identifier
PRODUCT_BUNDLE_IDENTIFIER = com.example.feet
PRODUCT_BUNDLE_IDENTIFIER = xyz.janderedev.feet
// The copyright displayed in application information
PRODUCT_COPYRIGHT = Copyright © 2022 com.example. All rights reserved.