adding a commented out way of including Commons locally

This commit is contained in:
tibbi 2022-05-24 14:46:34 +02:00
parent 61c62bc82f
commit 593e4b2837
3 changed files with 15 additions and 1 deletions

View File

@ -78,7 +78,7 @@ android {
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:795a4ae3e3'
implementation 'com.github.SimpleMobileTools:Simple-Commons:5add391a37'
implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
implementation 'it.sephiroth.android.exif:library:1.0.1'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.24'
@ -105,6 +105,8 @@ dependencies {
kapt 'androidx.room:room-compiler:2.3.0'
implementation 'androidx.room:room-runtime:2.3.0'
annotationProcessor 'androidx.room:room-compiler:2.3.0'
//implementation project(':commons')
}
// Apply the PESDKPlugin

View File

@ -1,6 +1,16 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// needed only if we are including commons locally from our pc, not via Jitpack
/*ext {
propCompileSdkVersion = 31
propMinSdkVersion = 21
propTargetSdkVersion = propCompileSdkVersion
propVersionCode = 1
propVersionName = '5.34.26'
kotlin_version = '1.6.21'
}*/
ext.kotlin_version = '1.6.21'
ext.is_proprietary = gradle.startParameter.taskNames.any { task -> task.contains("Proprietary") }

View File

@ -1 +1,3 @@
include ':app'
//include ':commons'
//project(':commons').projectDir = new File('../Simple-Commons/commons')