Setup the template project

This commit is contained in:
2021-09-03 10:47:27 +02:00
parent 150bc30d7e
commit 8f70464fa3
38 changed files with 371 additions and 34 deletions
+1
View File
@@ -0,0 +1 @@
/build
+48
View File
@@ -0,0 +1,48 @@
plugins {
id("com.android.library")
id("kotlin-android")
kotlin("kapt")
}
android {
compileSdk = Apps.compileSdk
buildToolsVersion = Apps.buildToolsVersion
defaultConfig {
minSdk = Apps.minSdk
targetSdk = Apps.targetSdk
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles("consumer-rules.pro")
}
buildTypes {
release {
isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}
dependencies {
api(project(":domain"))
implementation(Libs.core_ktx)
api(platform(Libs.kotlin_coroutine_bom))
api(Libs.kotlin_coroutine_core)
testImplementation(Libs.junit_jupiter_api)
testImplementation(Libs.junit_jupiter_engine)
testImplementation(Libs.mockk_core)
api(Libs.hilt_android)
kapt(Libs.hilt_android_compiler)
api(Libs.timber)
}
View File
+21
View File
@@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.kts.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
+4
View File
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest package="com.ericampire.android.androidstudycase.data">
</manifest>
@@ -0,0 +1,5 @@
package com.ericampire.android.androidstudycase.data.datasource.user
interface UserDataSource {
}
@@ -0,0 +1,6 @@
package com.ericampire.android.androidstudycase.data.di
object DataSourceModule {
}
@@ -0,0 +1,6 @@
package com.ericampire.android.androidstudycase.data.di
object RepositoryModule {
}
@@ -0,0 +1,11 @@
package com.ericampire.android.androidstudycase.data.repository
import com.ericampire.android.androidstudycase.data.datasource.user.UserDataSource
import com.ericampire.android.androidstudycase.domain.repository.UserRepository
import javax.inject.Inject
class UserRepositoryImpl @Inject constructor(
private val dataSource: UserDataSource
) : UserRepository {
}
@@ -0,0 +1,17 @@
package com.ericampire.android.androidstudycase.data
import org.junit.jupiter.api.Assertions.assertEquals
import org.junit.jupiter.api.Test
/**
* Example local unit test, which will execute on the development machine (host).
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
class ExampleUnitTest {
@Test
fun addition_isCorrect() {
assertEquals(4, 2 + 2)
}
}