Skip to content

Commit 17bf6be

Browse files
authored
Android 4.1.0 & iOS 2.25.0 (#115)
1 parent 2272ec3 commit 17bf6be

File tree

24 files changed

+124
-75
lines changed

24 files changed

+124
-75
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- uses: actions/setup-java@v4
3131
with:
3232
distribution: 'temurin'
33-
java-version: '11'
33+
java-version: '17'
3434
- uses: subosito/flutter-action@v2
3535
with:
3636
channel: 'stable'

splitio/example/android/app/build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ apply plugin: 'com.android.application'
2525
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
2626

2727
android {
28-
compileSdkVersion flutter.compileSdkVersion
2928

29+
compileSdk flutter.compileSdkVersion
3030
compileOptions {
3131
sourceCompatibility JavaVersion.VERSION_1_8
3232
targetCompatibility JavaVersion.VERSION_1_8
@@ -48,6 +48,8 @@ android {
4848
signingConfig signingConfigs.debug
4949
}
5050
}
51+
52+
namespace 'io.split.splitio_example'
5153
}
5254

5355
flutter {

splitio/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="io.split.splitio_example">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- Flutter needs it to communicate with the running application
43
to allow setting breakpoints, to provide hot reload, etc.
54
-->

splitio/example/android/app/src/main/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="io.split.splitio_example">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<application
43
android:label="splitio_example"
54
android:name="${applicationName}"

splitio/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="io.split.splitio_example">
1+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
32
<!-- Flutter needs it to communicate with the running application
43
to allow setting breakpoints, to provide hot reload, etc.
54
-->

splitio/example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
}
66

77
dependencies {
8-
classpath 'com.android.tools.build:gradle:7.4.2'
8+
classpath 'com.android.tools.build:gradle:8.4.0'
99
}
1010
}
1111

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
org.gradle.jvmargs=-Xmx1536M
22
android.useAndroidX=true
33
android.enableJetifier=true
4+
android.defaults.buildfeatures.buildconfig=true
5+
android.nonTransitiveRClass=false
6+
android.nonFinalResIds=false

splitio/example/android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip

splitio/example/ios/Flutter/AppFrameworkInfo.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@
2121
<key>CFBundleVersion</key>
2222
<string>1.0</string>
2323
<key>MinimumOSVersion</key>
24-
<string>11.0</string>
24+
<string>12.0</string>
2525
</dict>
2626
</plist>

splitio/example/ios/Podfile.lock

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
PODS:
22
- Flutter (1.0.0)
3-
- Split (2.24.3)
4-
- splitio_ios (0.4.0):
3+
- Split (2.25.0)
4+
- splitio_ios (0.5.0):
55
- Flutter
6-
- Split (~> 2.24.2)
6+
- Split (~> 2.25.0)
77

88
DEPENDENCIES:
99
- Flutter (from `Flutter`)
@@ -20,9 +20,9 @@ EXTERNAL SOURCES:
2020
:path: ".symlinks/plugins/splitio_ios/ios"
2121

2222
SPEC CHECKSUMS:
23-
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
24-
Split: 49b2d7a93a57062f4de8f210071b30cc86727937
25-
splitio_ios: a2e051130df42c320c500d90b3005999af7eefe8
23+
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
24+
Split: 268875814285de6ab6cd25744e170b407651a080
25+
splitio_ios: f6af0613ceedf0c037673afe256479bb0f6fc6ec
2626

2727
PODFILE CHECKSUM: 4e8f8b2be68aeea4c0d5beb6ff1e79fface1d048
2828

0 commit comments

Comments
 (0)