Skip to content

Commit

Permalink
feat: prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
triandamai committed Jul 21, 2021
1 parent 477ca4b commit dc904e6
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

41 changes: 38 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

// Top-level build file where you can add configuration options common to all sub-projects/modules.
apply plugin: 'com.android.library'
buildscript {
ext.kotlin_version = "1.4.30"
repositories {
Expand Down Expand Up @@ -36,7 +38,40 @@ allprojects {
}
}
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.core:core-ktx:1.5.0'

implementation 'androidx.annotation:annotation:1.1.0'
// Required -- JUnit 4 framework
testImplementation 'junit:junit:4.13.1'
testImplementation 'androidx.test:core:1.3.0'

}
android {
compileSdkVersion 30
buildToolsVersion "30.0.2"

defaultConfig {
minSdkVersion 19
targetSdkVersion 30
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

task clean(type: Delete) {
delete rootProject.buildDir
}
1 change: 0 additions & 1 deletion cexup-data-storage/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ android {
targetSdkVersion 30
versionCode 1
versionName "1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
Expand Down
2 changes: 1 addition & 1 deletion cexup-services/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
buildToolsVersion "29.0.0"

defaultConfig {
minSdkVersion 19
Expand Down
4 changes: 3 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

include ':app'
rootProject.name = "Cexup-Device"
rootProject.name = "Cexup-Module"
include ':cexup-services'
include ':cexup-data-storage'
include ':cexup-analytics'

0 comments on commit dc904e6

Please sign in to comment.