diff --git a/CHANGELOG.md b/CHANGELOG.md index de70567c..18d3ab2e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## 0.19.3 - Bump up `FBSDKCoreKit` android gradle version to `17.0` to `18.0` - Update ios example minimum deployment target to `12.0` +- Update target compile sdk in android gradle example to `34` ## 0.19.2 - Updating `FBSDKCoreKit` to `17.0` that include Privacy Manifest diff --git a/example/android/app/build.gradle b/example/android/app/build.gradle index c987725c..539368e9 100644 --- a/example/android/app/build.gradle +++ b/example/android/app/build.gradle @@ -26,7 +26,7 @@ apply plugin: 'kotlin-android' apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" android { - compileSdk 33 + compileSdk 34 sourceSets { @@ -38,8 +38,8 @@ android { // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "id.oddbit.flutter.facebook_app_events_example" multiDexEnabled true - minSdkVersion 16 - targetSdkVersion 33 + minSdkVersion flutter.minSdkVersion + targetSdkVersion 34 versionCode flutterVersionCode.toInteger() versionName flutterVersionName testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"