rename module
This commit is contained in:
parent
616e24a422
commit
a5dd52a44b
350 changed files with 65 additions and 8 deletions
|
@ -190,7 +190,7 @@ dependencies {
|
||||||
implementation project(':core:ui')
|
implementation project(':core:ui')
|
||||||
implementation project(':interfaces')
|
implementation project(':interfaces')
|
||||||
implementation project(':ui')
|
implementation project(':ui')
|
||||||
implementation project(':plugins')
|
implementation project(':plugins:main')
|
||||||
implementation project(':implementation')
|
implementation project(':implementation')
|
||||||
implementation project(':database:entities')
|
implementation project(':database:entities')
|
||||||
implementation project(':database:entities')
|
implementation project(':database:entities')
|
||||||
|
|
|
@ -13,7 +13,6 @@ files:
|
||||||
translation: /core/src/main/res/values-%android_code%/validator.xml
|
translation: /core/src/main/res/values-%android_code%/validator.xml
|
||||||
- source: /core/core-main/src/main/res/values/strings.xml
|
- source: /core/core-main/src/main/res/values/strings.xml
|
||||||
translation: /core/core-main/src/main/res/values-%android_code%/strings.xml
|
translation: /core/core-main/src/main/res/values-%android_code%/strings.xml
|
||||||
translate_attributes: 0
|
|
||||||
- source: /shared/src/main/res/values/strings.xml
|
- source: /shared/src/main/res/values/strings.xml
|
||||||
translation: /shared/src/main/res/values-%android_code%/strings.xml
|
translation: /shared/src/main/res/values-%android_code%/strings.xml
|
||||||
- source: /pump/combo/src/main/res/values/strings.xml
|
- source: /pump/combo/src/main/res/values/strings.xml
|
||||||
|
@ -56,5 +55,7 @@ files:
|
||||||
translation: /implementation/src/main/res/values-%android_code%/strings.xml
|
translation: /implementation/src/main/res/values-%android_code%/strings.xml
|
||||||
- source: /ui/src/main/res/values/strings.xml
|
- source: /ui/src/main/res/values/strings.xml
|
||||||
translation: /ui/src/main/res/values-%android_code%/strings.xml
|
translation: /ui/src/main/res/values-%android_code%/strings.xml
|
||||||
- source: /plugins/src/main/res/values/strings.xml
|
- source: /plugins/aps/src/main/res/values/strings.xml
|
||||||
translation: /plugins/src/main/res/values-%android_code%/strings.xml
|
translation: /plugins/aps/src/main/res/values-%android_code%/strings.xml
|
||||||
|
- source: /plugins/main/src/main/res/values/strings.xml
|
||||||
|
translation: /plugins/main/src/main/res/values-%android_code%/strings.xml
|
||||||
|
|
0
plugins/.gitignore → plugins/aps/.gitignore
vendored
0
plugins/.gitignore → plugins/aps/.gitignore
vendored
29
plugins/aps/build.gradle
Normal file
29
plugins/aps/build.gradle
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
plugins {
|
||||||
|
id 'com.android.library'
|
||||||
|
id 'kotlin-android'
|
||||||
|
id 'kotlin-kapt'
|
||||||
|
id 'kotlin-allopen'
|
||||||
|
id 'com.hiya.jacoco-android'
|
||||||
|
}
|
||||||
|
|
||||||
|
apply from: "${project.rootDir}/core/core-main/android_dependencies.gradle"
|
||||||
|
apply from: "${project.rootDir}/core/core-main/android_module_dependencies.gradle"
|
||||||
|
apply from: "${project.rootDir}/core/core-main/test_dependencies.gradle"
|
||||||
|
apply from: "${project.rootDir}/core/core-main/allopen_dependencies.gradle"
|
||||||
|
apply from: "${project.rootDir}/core/core-main/jacoco_global.gradle"
|
||||||
|
android {
|
||||||
|
namespace 'info.nightscout.plugins.aps'
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
implementation project(':app-wear-shared:rx')
|
||||||
|
implementation project(':app-wear-shared:shared')
|
||||||
|
implementation project(':database:entities')
|
||||||
|
implementation project(':database:impl')
|
||||||
|
implementation project(':core:core-main')
|
||||||
|
implementation project(':core:fabric')
|
||||||
|
implementation project(':core:ui')
|
||||||
|
implementation project(':interfaces')
|
||||||
|
|
||||||
|
api "androidx.appcompat:appcompat:$appcompat_version"
|
||||||
|
}
|
4
plugins/aps/src/main/AndroidManifest.xml
Normal file
4
plugins/aps/src/main/AndroidManifest.xml
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
|
</manifest>
|
1
plugins/main/.gitignore
vendored
Normal file
1
plugins/main/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
/build
|
0
plugins/main/consumer-rules.pro
Normal file
0
plugins/main/consumer-rules.pro
Normal file
21
plugins/main/proguard-rules.pro
vendored
Normal file
21
plugins/main/proguard-rules.pro
vendored
Normal 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.
|
||||||
|
#
|
||||||
|
# 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
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue