Skip to content

Commit 2148ae6

Browse files
committed
chore
1 parent 28f4250 commit 2148ae6

File tree

66 files changed

+295
-322
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+295
-322
lines changed

.idea/runConfigurations/main_dart.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.metadata

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# This file should be version controlled and should not be manually edited.
55

66
version:
7-
revision: "d211f42860350d914a5ad8102f9ec32764dc6d06"
7+
revision: "35c388afb57ef061d06a39b537336c87e0e3d1b1"
88
channel: "stable"
99

1010
project_type: app
@@ -13,14 +13,11 @@ project_type: app
1313
migration:
1414
platforms:
1515
- platform: root
16-
create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
17-
base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
18-
- platform: macos
19-
create_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
20-
base_revision: d211f42860350d914a5ad8102f9ec32764dc6d06
21-
- platform: ios
22-
create_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
23-
base_revision: db7ef5bf9f59442b0e200a90587e8fa5e0c6336a
16+
create_revision: 35c388afb57ef061d06a39b537336c87e0e3d1b1
17+
base_revision: 35c388afb57ef061d06a39b537336c87e0e3d1b1
18+
- platform: android
19+
create_revision: 35c388afb57ef061d06a39b537336c87e0e3d1b1
20+
base_revision: 35c388afb57ef061d06a39b537336c87e0e3d1b1
2421

2522
# User provided section
2623

android/.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
gradle-wrapper.jar
22
/.gradle
33
/captures/
4+
/gradlew
5+
/gradlew.bat
46
/local.properties
57
GeneratedPluginRegistrant.java
8+
.cxx/
69

710
# Remember to never publicly share your keystore.
8-
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11+
# See https://flutter.dev/to/reference-keystore
912
key.properties
1013
**/*.keystore
1114
**/*.jks

android/app/build.gradle

Lines changed: 0 additions & 115 deletions
This file was deleted.

android/app/build.gradle.kts

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
plugins {
2+
id("com.android.application")
3+
id("kotlin-android")
4+
// The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
5+
id("dev.flutter.flutter-gradle-plugin")
6+
}
7+
8+
android {
9+
namespace = "com.example.ht_main"
10+
compileSdk = flutter.compileSdkVersion
11+
ndkVersion = flutter.ndkVersion
12+
13+
compileOptions {
14+
sourceCompatibility = JavaVersion.VERSION_11
15+
targetCompatibility = JavaVersion.VERSION_11
16+
}
17+
18+
kotlinOptions {
19+
jvmTarget = JavaVersion.VERSION_11.toString()
20+
}
21+
22+
defaultConfig {
23+
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
24+
applicationId = "com.example.ht_main"
25+
// You can update the following values to match your application needs.
26+
// For more information, see: https://flutter.dev/to/review-gradle-config.
27+
minSdk = flutter.minSdkVersion
28+
targetSdk = flutter.targetSdkVersion
29+
versionCode = flutter.versionCode
30+
versionName = flutter.versionName
31+
}
32+
33+
buildTypes {
34+
release {
35+
// TODO: Add your own signing config for the release build.
36+
// Signing with the debug keys for now, so `flutter run --release` works.
37+
signingConfig = signingConfigs.getByName("debug")
38+
}
39+
}
40+
}
41+
42+
flutter {
43+
source = "../.."
44+
}
Binary file not shown.

android/app/src/development/res/drawable/ic_launcher_foreground.xml

Lines changed: 0 additions & 30 deletions
This file was deleted.

android/app/src/development/res/mipmap-anydpi-v26/ic_launcher.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.

android/app/src/development/res/mipmap-anydpi-v26/ic_launcher_round.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.
Binary file not shown.

0 commit comments

Comments
 (0)