Skip to content

Commit 99fa546

Browse files
authored
Merge pull request #5 from chandrabezzo/feat/sdk/upgrade-latest
Upgrae Latest SDK on Android and iOS
2 parents 63dc1d0 + 17aae84 commit 99fa546

File tree

18 files changed

+176
-130
lines changed

18 files changed

+176
-130
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ migrate_working_dir/
1919
# The .vscode folder contains launch configuration and tasks you configure in
2020
# VS Code which you may wish to be included in version control, so this line
2121
# is commented out by default.
22-
#.vscode/
22+
.vscode/
2323

2424
# Flutter/Dart/Pub related
2525
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.3.0
2+
* Upgrade Android SDK to 2.2.0
3+
* Upgrade iOS SDK to 2.0.1
4+
15
## 1.2.0
26
* Fix namespace issue #3
37

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ android {
5555

5656
dependencies {
5757
// Includes the visual inspector, a tool useful to monitor your analytics calls when developing
58-
debugImplementation 'com.github.avohq.android-avo-inspector:dev:2.0.4'
59-
profileImplementation 'com.github.avohq.android-avo-inspector:dev:2.0.4'
58+
debugImplementation 'com.github.avohq.android-avo-inspector:dev:2.2.0'
59+
profileImplementation 'com.github.avohq.android-avo-inspector:dev:2.2.0'
6060
// Does not include the visual inspector
61-
releaseImplementation 'com.github.avohq.android-avo-inspector:prod:2.0.4'
61+
releaseImplementation 'com.github.avohq.android-avo-inspector:prod:2.2.0'
6262
}

example/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
*.swp
66
.DS_Store
77
.atom/
8+
.build/
89
.buildlog/
910
.history
1011
.svn/
12+
.swiftpm/
1113
migrate_working_dir/
1214

1315
# IntelliJ related

example/android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ subprojects {
2626
project.evaluationDependsOn(':app')
2727
}
2828

29-
task clean(type: Delete) {
30-
delete rootProject.buildDir
29+
tasks.register("clean", Delete) {
30+
delete rootProject.layout.buildDirectory
3131
}

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>

example/ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Uncomment this line to define a global platform for your project
2-
# platform :ios, '11.0'
2+
# platform :ios, '12.0'
33

44
# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
55
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

example/ios/Podfile.lock

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
PODS:
2-
- AvoInspector (1.3.0):
3-
- IosAnalyticsDebugger (~> 1.2.3)
2+
- AvoInspector (2.0.1)
43
- Flutter (1.0.0)
54
- flutter_avo_inspector (1.0.0):
6-
- AvoInspector (~> 1.3.0)
5+
- AvoInspector (~> 2.0.1)
76
- Flutter
8-
- IosAnalyticsDebugger (1.2.3)
7+
- IosAnalyticsDebugger (~> 1.2.3)
8+
- IosAnalyticsDebugger (1.2.4)
99
- shared_preferences_foundation (0.0.1):
1010
- Flutter
1111
- FlutterMacOS
@@ -29,12 +29,12 @@ EXTERNAL SOURCES:
2929
:path: ".symlinks/plugins/shared_preferences_foundation/darwin"
3030

3131
SPEC CHECKSUMS:
32-
AvoInspector: 9307059ed83f61e5f0d6ac12739746ee694a8317
33-
Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
34-
flutter_avo_inspector: 36db1d6972c599791ab5a28556c35c658041c480
35-
IosAnalyticsDebugger: 9d4854b61b845c5c5f66fba99a8b3edace1386d0
36-
shared_preferences_foundation: 297b3ebca31b34ec92be11acd7fb0ba932c822ca
32+
AvoInspector: ef72eb0b8eae380c986b14879e1f5da2ac490948
33+
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
34+
flutter_avo_inspector: 8d3755073cf81745b05e5499e303f6845a1bd0ef
35+
IosAnalyticsDebugger: e2330530b510835f3fe3e3e717b7704c47317610
36+
shared_preferences_foundation: 9e1978ff2562383bd5676f64ec4e9aa8fa06a6f7
3737

38-
PODFILE CHECKSUM: ef19549a9bc3046e7bb7d2fab4d021637c0c58a3
38+
PODFILE CHECKSUM: c4c93c5f6502fe2754f48404d3594bf779584011
3939

40-
COCOAPODS: 1.11.2
40+
COCOAPODS: 1.16.2

example/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@
121121
94DA588279EB12E6C3B517C3 /* Pods-Runner.release.xcconfig */,
122122
13A4DE011B965F018D5B7505 /* Pods-Runner.profile.xcconfig */,
123123
);
124-
name = Pods;
125124
path = Pods;
126125
sourceTree = "<group>";
127126
};
@@ -156,7 +155,7 @@
156155
97C146E61CF9000F007C117D /* Project object */ = {
157156
isa = PBXProject;
158157
attributes = {
159-
LastUpgradeCheck = 1300;
158+
LastUpgradeCheck = 1510;
160159
ORGANIZATIONNAME = "";
161160
TargetAttributes = {
162161
97C146ED1CF9000F007C117D = {
@@ -343,7 +342,7 @@
343342
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
344343
GCC_WARN_UNUSED_FUNCTION = YES;
345344
GCC_WARN_UNUSED_VARIABLE = YES;
346-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
345+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
347346
MTL_ENABLE_DEBUG_INFO = NO;
348347
SDKROOT = iphoneos;
349348
SUPPORTED_PLATFORMS = iphoneos;
@@ -359,7 +358,7 @@
359358
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
360359
CLANG_ENABLE_MODULES = YES;
361360
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
362-
DEVELOPMENT_TEAM = XT9RJDBAYU;
361+
DEVELOPMENT_TEAM = "";
363362
ENABLE_BITCODE = NO;
364363
INFOPLIST_FILE = Runner/Info.plist;
365364
LD_RUNPATH_SEARCH_PATHS = (
@@ -421,7 +420,7 @@
421420
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
422421
GCC_WARN_UNUSED_FUNCTION = YES;
423422
GCC_WARN_UNUSED_VARIABLE = YES;
424-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
423+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
425424
MTL_ENABLE_DEBUG_INFO = YES;
426425
ONLY_ACTIVE_ARCH = YES;
427426
SDKROOT = iphoneos;
@@ -470,7 +469,7 @@
470469
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
471470
GCC_WARN_UNUSED_FUNCTION = YES;
472471
GCC_WARN_UNUSED_VARIABLE = YES;
473-
IPHONEOS_DEPLOYMENT_TARGET = 11.0;
472+
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
474473
MTL_ENABLE_DEBUG_INFO = NO;
475474
SDKROOT = iphoneos;
476475
SUPPORTED_PLATFORMS = iphoneos;
@@ -488,7 +487,7 @@
488487
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
489488
CLANG_ENABLE_MODULES = YES;
490489
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
491-
DEVELOPMENT_TEAM = XT9RJDBAYU;
490+
DEVELOPMENT_TEAM = "";
492491
ENABLE_BITCODE = NO;
493492
INFOPLIST_FILE = Runner/Info.plist;
494493
LD_RUNPATH_SEARCH_PATHS = (
@@ -511,7 +510,7 @@
511510
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
512511
CLANG_ENABLE_MODULES = YES;
513512
CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
514-
DEVELOPMENT_TEAM = XT9RJDBAYU;
513+
DEVELOPMENT_TEAM = "";
515514
ENABLE_BITCODE = NO;
516515
INFOPLIST_FILE = Runner/Info.plist;
517516
LD_RUNPATH_SEARCH_PATHS = (

example/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<Scheme
3-
LastUpgradeVersion = "1300"
3+
LastUpgradeVersion = "1510"
44
version = "1.3">
55
<BuildAction
66
parallelizeBuildables = "YES"
@@ -48,6 +48,7 @@
4848
ignoresPersistentStateOnLaunch = "NO"
4949
debugDocumentVersioning = "YES"
5050
debugServiceExtension = "internal"
51+
enableGPUValidationMode = "1"
5152
allowLocationSimulation = "YES">
5253
<BuildableProductRunnable
5354
runnableDebuggingMode = "0">

0 commit comments

Comments
 (0)