Skip to content

Commit

Permalink
init lock module
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume M committed Jun 18, 2019
1 parent 559a919 commit 6a8ec2d
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 0 deletions.
1 change: 1 addition & 0 deletions lock/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
24 changes: 24 additions & 0 deletions lock/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
apply plugin: 'com.android.dynamic-feature'

apply plugin: 'kotlin-platform-android'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android-extensions'

apply from: '../config_module.gradle'
apply from: '../base_dependencies.gradle'
apply from: '../test_dependencies.gradle'

android {
lintOptions {
lintConfig file(project.rootDir.path + "/lock/lint-rules.xml")
}
}

dependencies {
implementation project(':app')
implementation project(':core')

kapt "com.google.dagger:dagger-compiler:$dagger_version"
kapt "com.squareup.moshi:moshi-kotlin-codegen:$moshi_version"
}
4 changes: 4 additions & 0 deletions lock/lint-rules.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<lint>

</lint>
22 changes: 22 additions & 0 deletions lock/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:dist="http://schemas.android.com/apk/distribution"
package="io.freshdroid.mymonzo.lock">

<dist:module
dist:onDemand="false"
dist:instant="false"
dist:title="@string/feature_name_lock">
<dist:fusing dist:include="true"/>
</dist:module>

<application
android:name="io.freshdroid.mymonzo.MyMonzoApplication"
android:supportsRtl="true"
tools:ignore="AllowBackup,GoogleAppIndexingWarning,MissingApplicationIcon">


</application>

</manifest>

0 comments on commit 6a8ec2d

Please sign in to comment.