diff --git a/MiNote/app/build.gradle.kts b/MiNote/app/build.gradle.kts index 84642c3..7ceffa0 100644 --- a/MiNote/app/build.gradle.kts +++ b/MiNote/app/build.gradle.kts @@ -29,5 +29,30 @@ android { sourceCompatibility = JavaVersion.VERSION_11 targetCompatibility = JavaVersion.VERSION_11 } + packaging { + resources.excludes.add("META-INF/DEPENDENCIES"); + resources.excludes.add("META-INF/NOTICE"); + resources.excludes.add("META-INF/LICENSE"); + resources.excludes.add("META-INF/LICENSE.txt"); + resources.excludes.add("META-INF/NOTICE.txt"); + } +} + +dependencies { + implementation(libs.appcompat) + implementation(libs.material) + implementation(libs.activity) + implementation(libs.constraintlayout) + testImplementation(libs.junit) + androidTestImplementation(libs.ext.junit) + androidTestImplementation(libs.espresso.core) +// implementation(fileTree(mapOf( +// "dir" to "libs", +// "include" to listOf("*.aar", "*.jar"), +// "exclude" to emptyList() +// ))) + implementation(files("libs/lib/httpclient-osgi-4.5.14.jar")) + implementation(files("libs/lib/httpclient-win-4.5.14.jar")) + implementation(files("libs/lib/httpcore-4.4.16.jar")) } \ No newline at end of file