From af7036fb44f609aac7f9041b7404569942a4f3b4 Mon Sep 17 00:00:00 2001 From: trongtrong Date: Mon, 16 Jan 2023 17:09:24 +0700 Subject: [PATCH] test --- app/build.gradle | 7 +++++-- build.gradle | 2 +- settings.gradle | 1 + testmodule/build.gradle | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 76cc607..2a90854 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -4,12 +4,12 @@ plugins { android { namespace 'com.example.testjitpack' - compileSdk 32 + compileSdk 33 defaultConfig { applicationId "com.example.testjitpack" minSdk 21 - targetSdk 32 + targetSdk 33 versionCode 1 versionName "1.0" @@ -26,6 +26,7 @@ android { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } + } dependencies { @@ -36,4 +37,6 @@ dependencies { testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.5' androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' + implementation 'com.github.trongtrong:demo_lib_2:0.0.10' + } \ No newline at end of file diff --git a/build.gradle b/build.gradle index 71b99f4..9d4048d 100644 --- a/build.gradle +++ b/build.gradle @@ -2,4 +2,4 @@ plugins { id 'com.android.application' version '7.3.1' apply false id 'com.android.library' version '7.3.1' apply false -} \ No newline at end of file +} diff --git a/settings.gradle b/settings.gradle index 48e3641..b4ecd23 100644 --- a/settings.gradle +++ b/settings.gradle @@ -10,6 +10,7 @@ dependencyResolutionManagement { repositories { google() mavenCentral() + maven { url 'https://jitpack.io' } } } rootProject.name = "Test Jitpack" diff --git a/testmodule/build.gradle b/testmodule/build.gradle index 96b83bf..6008b3e 100644 --- a/testmodule/build.gradle +++ b/testmodule/build.gradle @@ -5,12 +5,12 @@ plugins { android { namespace 'com.example.testmodule' - compileSdk 32 + compileSdk 33 defaultConfig { applicationId "com.example.testmodule" minSdk 21 - targetSdk 32 + targetSdk 33 versionCode 1 versionName "1.0"