Skip to content

Commit

Permalink
Add modules
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanCheen committed Jan 3, 2023
1 parent d360f48 commit d2e4de9
Show file tree
Hide file tree
Showing 5 changed files with 58 additions and 32 deletions.
29 changes: 19 additions & 10 deletions arch-clean/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@ plugins {
id 'kotlin-android'
}

apply plugin: 'com.github.dcendents.android-maven'

group = 'me.yifeiyuan'

android {
compileSdkVersion 33
buildToolsVersion "33.0.0"
compileSdkVersion 30
buildToolsVersion "30.0.3"

defaultConfig {
minSdkVersion 17
targetSdkVersion 33
minSdkVersion 21
targetSdkVersion 30
versionCode 1
versionName "1.0"

Expand All @@ -30,15 +34,20 @@ android {
kotlinOptions {
jvmTarget = '1.8'
}

lintOptions {
checkReleaseBuilds false
abortOnError false
}
}

dependencies {

implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.7.0'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
2 changes: 2 additions & 0 deletions arch-func/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ plugins {
id 'kotlin-android'
}

apply plugin: 'com.github.dcendents.android-maven'

android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
Expand Down
19 changes: 13 additions & 6 deletions arch-mvi/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ plugins {
id 'kotlin-android'
}

apply plugin: 'com.github.dcendents.android-maven'

android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
Expand Down Expand Up @@ -30,15 +32,20 @@ android {
kotlinOptions {
jvmTarget = '1.8'
}

lintOptions {
checkReleaseBuilds false
abortOnError false
}
}

dependencies {

implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.7.0'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
27 changes: 17 additions & 10 deletions arch-mvvm/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,15 @@ plugins {
id 'kotlin-android'
}

apply plugin: 'com.github.dcendents.android-maven'

android {
compileSdkVersion 32
buildToolsVersion "33.0.0"
compileSdkVersion 30
buildToolsVersion "30.0.3"

defaultConfig {
minSdkVersion 17
targetSdkVersion 32
minSdkVersion 21
targetSdkVersion 30
versionCode 1
versionName "1.0"

Expand All @@ -30,15 +32,20 @@ android {
kotlinOptions {
jvmTarget = '1.8'
}

lintOptions {
checkReleaseBuilds false
abortOnError false
}
}

dependencies {

implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.7.0'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
13 changes: 7 additions & 6 deletions multistatelayout/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
id 'com.android.library'
id 'kotlin-android'
}
apply plugin: 'com.github.dcendents.android-maven'

android {
compileSdkVersion 30
Expand Down Expand Up @@ -35,10 +36,10 @@ android {
dependencies {

implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.7.0'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

0 comments on commit d2e4de9

Please sign in to comment.