Skip to content

Commit

Permalink
add namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
saschoar committed Oct 24, 2023
1 parent 495d59b commit 0a45103
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath('com.android.tools.build:gradle:7.4.2')
classpath('com.android.tools.build:gradle:8.1.2')
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10")
classpath("com.github.dcendents:android-maven-gradle-plugin:2.1")
}
Expand Down
7 changes: 4 additions & 3 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ plugins {
}

android {
namespace "com.transferwise.sequencelayout"
compileSdk = 34

defaultConfig {
Expand All @@ -22,12 +23,12 @@ android {
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_17.toString()
jvmTarget = JavaVersion.VERSION_1_8.toString()
}
}

Expand Down
8 changes: 6 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,19 @@ plugins {
}

android {
namespace "com.transferwise.sequencelayout.sample"
compileSdk = 34
defaultConfig {
minSdkVersion(16)
targetSdkVersion(34)
applicationId = "com.transferwise.sequencelayout.sample"
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
}
}

Expand Down

0 comments on commit 0a45103

Please sign in to comment.