diff --git a/navi-design/.gitignore b/navi-design/.gitignore new file mode 100644 index 0000000000..42afabfd2a --- /dev/null +++ b/navi-design/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/navi-design/build.gradle b/navi-design/build.gradle new file mode 100644 index 0000000000..f63e723035 --- /dev/null +++ b/navi-design/build.gradle @@ -0,0 +1,42 @@ +plugins { + id 'com.android.library' + id 'kotlin-android' +} + +android { + compileSdkVersion 32 + + defaultConfig { + minSdkVersion 21 + targetSdkVersion 32 + versionCode 1 + versionName "1.0" + + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + consumerProguardFiles "consumer-rules.pro" + } + + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + kotlinOptions { + jvmTarget = '1.8' + } +} + +dependencies { + + implementation 'androidx.core:core-ktx:1.7.0' + implementation 'androidx.appcompat:appcompat:1.4.1' + implementation 'com.google.android.material:material:1.5.0' + testImplementation 'junit:junit:4.+' + androidTestImplementation 'androidx.test.ext:junit:1.1.3' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' +} \ No newline at end of file diff --git a/navi-design/consumer-rules.pro b/navi-design/consumer-rules.pro new file mode 100644 index 0000000000..e69de29bb2 diff --git a/navi-design/proguard-rules.pro b/navi-design/proguard-rules.pro new file mode 100644 index 0000000000..481bb43481 --- /dev/null +++ b/navi-design/proguard-rules.pro @@ -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. +# +# 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 \ No newline at end of file diff --git a/navi-design/src/androidTest/java/com/navi/design/ExampleInstrumentedTest.kt b/navi-design/src/androidTest/java/com/navi/design/ExampleInstrumentedTest.kt new file mode 100644 index 0000000000..8443f54460 --- /dev/null +++ b/navi-design/src/androidTest/java/com/navi/design/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.navi.design + +import androidx.test.platform.app.InstrumentationRegistry +import androidx.test.ext.junit.runners.AndroidJUnit4 + +import org.junit.Test +import org.junit.runner.RunWith + +import org.junit.Assert.* + +/** + * Instrumented test, which will execute on an Android device. + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +@RunWith(AndroidJUnit4::class) +class ExampleInstrumentedTest { + @Test + fun useAppContext() { + // Context of the app under test. + val appContext = InstrumentationRegistry.getInstrumentation().targetContext + assertEquals("com.navi.design.test", appContext.packageName) + } +} \ No newline at end of file diff --git a/navi-design/src/main/AndroidManifest.xml b/navi-design/src/main/AndroidManifest.xml new file mode 100644 index 0000000000..9772ec30ed --- /dev/null +++ b/navi-design/src/main/AndroidManifest.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/navi-design/src/test/java/com/navi/design/ExampleUnitTest.kt b/navi-design/src/test/java/com/navi/design/ExampleUnitTest.kt new file mode 100644 index 0000000000..d846b64ee8 --- /dev/null +++ b/navi-design/src/test/java/com/navi/design/ExampleUnitTest.kt @@ -0,0 +1,17 @@ +package com.navi.design + +import org.junit.Test + +import org.junit.Assert.* + +/** + * 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) + } +} \ No newline at end of file diff --git a/settings.gradle b/settings.gradle index 8c46d9445a..27a8a7ba71 100644 --- a/settings.gradle +++ b/settings.gradle @@ -9,3 +9,4 @@ include ':navi-insurance' include ':one-money-sdk' include ':navi-widgets' include ':navi-reusableui' +include ':navi-design'