diff --git a/foudations/mogo-commons/build.gradle b/foudations/mogo-commons/build.gradle index a0467e3..e0ebf57 100644 --- a/foudations/mogo-commons/build.gradle +++ b/foudations/mogo-commons/build.gradle @@ -1,6 +1,7 @@ apply plugin: 'com.android.library' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' +apply from: new File(rootProject.rootDir, "gradle/upload.gradle").toString() android { compileSdkVersion rootProject.ext.android.compileSdkVersion @@ -22,6 +23,10 @@ android { proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } } dependencies { diff --git a/foudations/mogo-commons/gradle.properties b/foudations/mogo-commons/gradle.properties new file mode 100644 index 0000000..97b0773 --- /dev/null +++ b/foudations/mogo-commons/gradle.properties @@ -0,0 +1,4 @@ +GROUP=com.mogo.cloud +POM_ARTIFACT_ID=commons +VERSION_CODE=1 +VERSION_NAME=1.0.0 \ No newline at end of file