Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update target sdk to 34 #399

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion android-library-no-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

android {
compileSdk = 33
compileSdk = 34
namespace = "com.osacky.flank.gradle.sample.library"
defaultConfig {
minSdk = 23
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -941,7 +941,7 @@ class FulladlePluginIntegrationTest {
id "com.android.application"
}
android {
compileSdk 33
compileSdk 34
namespace "com.osacky.flank.gradle.sample"
defaultConfig {
applicationId "com.osacky.flank.gradle.sample"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ private const val COMMON_SCRIPT_PART = """
}

android {
compileSdk 33
compileSdk 34
namespace "com.osacky.flank.gradle.sample"
defaultConfig {
applicationId "com.osacky.flank.gradle.sample"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,12 @@ class VariantTests {
mavenCentral()
}
android {
compileSdk 33
compileSdk 34
namespace = "com.osacky.flank.gradle.sample"
defaultConfig {
applicationId "com.osacky.flank.gradle.sample"
minSdk 23
targetSdk 33
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ plugins {
}

android {
compileSdk 33
compileSdk 34
namespace = "com.osacky.flank.gradle.sample"
defaultConfig {
targetSdk 33
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ plugins {
}

android {
compileSdk 33
compileSdk 34
namespace = "com.osacky.flank.gradle.sample"
defaultConfig {
targetSdk 33
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ plugins {
}

android {
compileSdk 33
compileSdk 34
namespace = "com.osacky.flank.gradle.sample"
defaultConfig {
applicationId "com.osacky.flank.gradle.sample"
minSdk 23
targetSdk 33
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
4 changes: 2 additions & 2 deletions fladle-plugin/src/test/resources/android-project/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ plugins {
}

android {
compileSdk 33
compileSdk 34
namespace = "com.osacky.flank.gradle.sample"
defaultConfig {
applicationId "com.osacky.flank.gradle.sample"
minSdk 23
targetSdk 33
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ plugins {
}

android {
compileSdk 33
compileSdk 34
namespace = "com.osacky.flank.gradle.sample"
defaultConfig {
applicationId "com.osacky.flank.gradle.sample"
minSdk 23
targetSdk 33
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
2 changes: 1 addition & 1 deletion sample-android-library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ fulladleModuleConfig {

android {
namespace = "com.osacky.flank.gradle.sample"
compileSdk = 33
compileSdk = 34
defaultConfig {
minSdk = 23
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down
2 changes: 1 addition & 1 deletion sample-flavors-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

android {
namespace = "com.osacky.flank.gradle.sample.kotlin"
compileSdk = 33
compileSdk = 34
defaultConfig {
applicationId = "com.osacky.flank.gradle.sample.kotlin"
minSdk = 23
Expand Down
2 changes: 1 addition & 1 deletion sample-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {

android {
namespace = "com.osacky.flank.gradle.sample.kotlin"
compileSdk = 33
compileSdk = 34
defaultConfig {
applicationId = "com.osacky.flank.gradle.sample.kotlin"
minSdk = 23
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ apply plugin: 'kotlin-android'
apply plugin: 'com.osacky.fladle'

android {
compileSdk = 33
compileSdk = 34
namespace = "com.osacky.flank.gradle.sample"
defaultConfig {
applicationId "com.osacky.flank.gradle.sample"
minSdk 23
targetSdk 33
targetSdk 34
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down
Loading