Skip to content
Merged
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
14 changes: 7 additions & 7 deletions ChangeLogLib/build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
plugins {
id 'com.android.library'
id 'kotlin-android'
id 'maven-publish'
id "com.android.library"
id "kotlin-android"
id "maven-publish"
}

android {
namespace 'info.hannes'
namespace "info.hannes"
defaultConfig {

minSdkVersion 21
Expand All @@ -18,15 +18,15 @@ android {
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
jvmTarget = "17"
}
}

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2"
implementation 'com.google.code.gson:gson:2.13.1'
api 'com.google.android.material:material:1.12.0'
implementation "com.google.code.gson:gson:2.13.1"
api "com.google.android.material:material:1.12.0"
}

project.afterEvaluate {
Expand Down
14 changes: 7 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: "com.android.application"
apply plugin: "kotlin-android"

android {
namespace 'info.hannes.changelog.sample'
namespace "info.hannes.changelog.sample"
defaultConfig {
versionCode 1
versionName "1.0"
Expand All @@ -13,7 +13,7 @@ android {
}
packagingOptions {
resources {
pickFirsts += ['META-INF/atomicfu.kotlin_module']
pickFirsts += ["META-INF/atomicfu.kotlin_module"]
}
}

Expand All @@ -22,13 +22,13 @@ android {
targetCompatibility JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = '17'
jvmTarget = "17"
}
}

dependencies {
implementation project(':ChangeLogLib')
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation project(":ChangeLogLib")
implementation "androidx.legacy:legacy-support-v4:1.0.0"
implementation "androidx.appcompat:appcompat:1.7.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
}
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
buildscript {
ext.kotlin_version = '2.2.0'
ext.kotlin_version = "2.2.0"
repositories {
google()
mavenCentral()
}

dependencies {
classpath 'com.android.tools.build:gradle:8.11.1'
classpath "com.android.tools.build:gradle:8.11.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down
Loading