Skip to content

Commit 9ea9239

Browse files
committed
Release V2.3.1: Update example project
- Updated example project with latest Flutter platform files - Regenerated platform folders (android, ios, linux, macos, windows, web)
1 parent 7e8eb85 commit 9ea9239

Some content is hidden

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

52 files changed

+774
-457
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 2.3.1
2+
3+
### Maintenance
4+
* Updated example project
5+
16
## 2.3.0
27

38
### Documentation

example/.metadata

Lines changed: 15 additions & 15 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: "c23637390482d4cf9598c3ce3f2be31aa7332daf"
7+
revision: "b45fa18946ecc2d9b4009952c636ba7e2ffbb787"
88
channel: "stable"
99

1010
project_type: app
@@ -13,26 +13,26 @@ project_type: app
1313
migration:
1414
platforms:
1515
- platform: root
16-
create_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
17-
base_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
16+
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
17+
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
1818
- platform: android
19-
create_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
20-
base_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
19+
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
20+
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
2121
- platform: ios
22-
create_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
23-
base_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
22+
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
23+
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
2424
- platform: linux
25-
create_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
26-
base_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
25+
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
26+
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
2727
- platform: macos
28-
create_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
29-
base_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
28+
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
29+
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
3030
- platform: web
31-
create_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
32-
base_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
31+
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
32+
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
3333
- platform: windows
34-
create_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
35-
base_revision: c23637390482d4cf9598c3ce3f2be31aa7332daf
34+
create_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
35+
base_revision: b45fa18946ecc2d9b4009952c636ba7e2ffbb787
3636

3737
# User provided section
3838

example/android/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ gradle-wrapper.jar
55
/gradlew.bat
66
/local.properties
77
GeneratedPluginRegistrant.java
8+
.cxx/
89

910
# Remember to never publicly share your keystore.
10-
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11+
# See https://flutter.dev/to/reference-keystore
1112
key.properties
1213
**/*.keystore
1314
**/*.jks

example/android/app/build.gradle

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

example/android/app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ android {
1111
ndkVersion = flutter.ndkVersion
1212

1313
compileOptions {
14-
sourceCompatibility = JavaVersion.VERSION_11
15-
targetCompatibility = JavaVersion.VERSION_11
14+
sourceCompatibility = JavaVersion.VERSION_17
15+
targetCompatibility = JavaVersion.VERSION_17
1616
}
1717

1818
kotlinOptions {
19-
jvmTarget = JavaVersion.VERSION_11.toString()
19+
jvmTarget = JavaVersion.VERSION_17.toString()
2020
}
2121

2222
defaultConfig {

example/android/app/src/debug/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.example">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- The INTERNET permission is required for development. Specifically,
43
the Flutter tool needs it to communicate with the running application
54
to allow setting breakpoints, to provide hot reload, etc.

example/android/app/src/main/AndroidManifest.xml

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.example">
3-
<application
4-
android:label="example"
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
2+
<application
3+
android:label="flutter_weather_demo"
54
android:name="${applicationName}"
65
android:icon="@mipmap/ic_launcher">
76
<activity
87
android:name=".MainActivity"
98
android:exported="true"
109
android:launchMode="singleTop"
10+
android:taskAffinity=""
1111
android:theme="@style/LaunchTheme"
1212
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
1313
android:hardwareAccelerated="true"
@@ -31,4 +31,15 @@
3131
android:name="flutterEmbedding"
3232
android:value="2" />
3333
</application>
34+
<!-- Required to query activities that can process text, see:
35+
https://developer.android.com/training/package-visibility and
36+
https://developer.android.com/reference/android/content/Intent#ACTION_PROCESS_TEXT.
37+
38+
In particular, this is used by the Flutter engine in io.flutter.plugin.text.ProcessTextPlugin. -->
39+
<queries>
40+
<intent>
41+
<action android:name="android.intent.action.PROCESS_TEXT"/>
42+
<data android:mimeType="text/plain"/>
43+
</intent>
44+
</queries>
3445
</manifest>

example/android/app/src/main/kotlin/com/example/example/MainActivity.kt

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

example/android/app/src/profile/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
package="com.example.example">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- The INTERNET permission is required for development. Specifically,
43
the Flutter tool needs it to communicate with the running application
54
to allow setting breakpoints, to provide hot reload, etc.

example/android/build.gradle

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

0 commit comments

Comments
 (0)