mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-11-26 03:16:02 +03:00
Merge pull request #6774 from vector-im/feature/adm/strings-module
Dedicated module for `strings`
This commit is contained in:
commit
0a1b32609e
152 changed files with 31 additions and 7 deletions
1
changelog.d/3955.misc
Normal file
1
changelog.d/3955.misc
Normal file
|
@ -0,0 +1 @@
|
||||||
|
Creates a dedicated strings module
|
22
library/ui-strings/build.gradle
Normal file
22
library/ui-strings/build.gradle
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
plugins {
|
||||||
|
id 'com.android.library'
|
||||||
|
id 'kotlin-android'
|
||||||
|
id 'com.likethesalad.stem-library'
|
||||||
|
}
|
||||||
|
|
||||||
|
android {
|
||||||
|
compileSdk versions.compileSdk
|
||||||
|
defaultConfig {
|
||||||
|
minSdk versions.minSdk
|
||||||
|
targetSdk versions.targetSdk
|
||||||
|
}
|
||||||
|
|
||||||
|
compileOptions {
|
||||||
|
sourceCompatibility versions.sourceCompat
|
||||||
|
targetCompatibility versions.targetCompat
|
||||||
|
}
|
||||||
|
|
||||||
|
kotlinOptions {
|
||||||
|
jvmTarget = "11"
|
||||||
|
}
|
||||||
|
}
|
2
library/ui-strings/src/main/AndroidManifest.xml
Normal file
2
library/ui-strings/src/main/AndroidManifest.xml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest package="im.vector.lib.strings" />
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue