Skip to content

Commit

Permalink
Updated version code and libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
OmGodse committed Aug 11, 2020
1 parent 9d250f5 commit 812c2ac
Showing 1 changed file with 10 additions and 15 deletions.
25 changes: 10 additions & 15 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,26 +1,27 @@
apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 29
buildToolsVersion "29.0.3"

defaultConfig {
applicationId "com.omgodse.notally"
minSdkVersion 23
minSdkVersion 21
targetSdkVersion 29
versionCode 22
versionName "2.7"
versionCode 23
versionName "2.8"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
Expand All @@ -31,8 +32,6 @@ android {
buildFeatures {
viewBinding true
}

androidExtensions { features = ["parcelize"] }
}

dependencies {
Expand All @@ -42,20 +41,16 @@ dependencies {
final def stablePrefVersion = "1.1.1"

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.core:core-ktx:1.3.0'
implementation 'androidx.appcompat:appcompat:1.1.0'

testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'androidx.core:core-ktx:1.3.1'
implementation 'androidx.appcompat:appcompat:1.2.0'

implementation "androidx.preference:preference-ktx:$stablePrefVersion"

implementation "androidx.navigation:navigation-ui-ktx:$stableNavVersion"
implementation "androidx.navigation:navigation-fragment-ktx:$stableNavVersion"

implementation 'org.ocpsoft.prettytime:prettytime:4.0.5.Final'
implementation 'com.google.android.material:material:1.3.0-alpha01'
implementation 'com.google.android.material:material:1.3.0-alpha02'

implementation 'com.uttampanchasara.pdfgenerator:pdfgenerator:1.3'
implementation project(':Post')
}

0 comments on commit 812c2ac

Please sign in to comment.