Skip to content

Commit 80191d3

Browse files
Merge pull request #397 from dekusms/staging
Staging
2 parents a33abd8 + dc22147 commit 80191d3

File tree

213 files changed

+6799
-14495
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

213 files changed

+6799
-14495
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
/.idea/assetWizardSettings.xml
1111
.DS_Store
1212
/build
13+
lib_smsmms_android/build
14+
lib_smsmms_android/build/*
1315
/captures
1416
.externalNativeBuild
1517
.cxx

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@
44
[submodule "reproducible-apk-tools"]
55
path = reproducible-apk-tools
66
url = https://github.com/obfusk/reproducible-apk-tools.git
7+
[submodule "smswithoutborders_libsmsmms"]
8+
path = smswithoutborders_libsmsmms
9+
url = [email protected]:smswithoutborders/lib_smsmms_android.git

.idea/misc.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 24 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
plugins {
22
id 'com.android.application'
33
id 'org.jetbrains.kotlin.android'
4-
id "com.diffplug.spotless" version "6.20.0"
5-
id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.23'
4+
id "com.diffplug.spotless" version "7.0.4"
5+
id 'org.jetbrains.kotlin.plugin.serialization' version '2.2.0'
66

77
id("com.gradleup.nmcp").version("0.0.8")
88
alias(libs.plugins.compose.compiler)
@@ -40,13 +40,16 @@ android {
4040
}
4141
}
4242

43-
resourceConfigurations += ["en", "fr", "ru", "de", "pl"]
4443
}
4544

4645
buildFeatures {
4746
compose true
4847
}
4948

49+
dexOptions {
50+
incremental true
51+
}
52+
5053
buildscript {
5154
ext {
5255
compose_compiler = '1.3.1' //compiler
@@ -95,16 +98,23 @@ android {
9598
jvmTarget = "1.8"
9699
}
97100

98-
lintOptions {
99-
checkReleaseBuilds false
100-
//If you want to continue even if errors found use following line
101+
102+
packaging {
103+
resources {
104+
it.excludes += "/META-INF/{LICENSE.md,NOTICE.md}"
105+
}
106+
}
107+
lint {
101108
abortOnError false
109+
checkReleaseBuilds false
102110
}
103111

104112
}
105113

106114
dependencies {
107115
implementation project(':smswithoutborders_libsignal-doubleratchet')
116+
// implementation project(':smswithoutborders_libsmsmms:lib_smsmms_android')
117+
implementation 'com.github.smswithoutborders:lib_smsmms_android:12cee57'
108118

109119
implementation libs.androidx.room.testing
110120
implementation libs.androidx.activity
@@ -266,7 +276,13 @@ dependencies {
266276

267277
implementation libs.accompanist.permissions
268278

269-
implementation(platform(libs.androidx.compose.bom.v20250200))
279+
// implementation(platform(libs.androidx.compose.bom.v20250200))
270280
implementation(libs.androidx.paging.compose)
271-
}
272281

282+
implementation(libs.android.smsmms)
283+
// compile libs.android.smsmms
284+
285+
androidTestImplementation libs.androidx.rules
286+
287+
implementation(libs.coil.video)
288+
}

app/release/app-release.aab

-12.5 MB
Binary file not shown.

app/release/output-metadata.json

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,27 @@
1111
"type": "SINGLE",
1212
"filters": [],
1313
"attributes": [],
14-
"versionCode": 49,
15-
"versionName": "0.37.0",
14+
"versionCode": 67,
15+
"versionName": "0.61.0",
1616
"outputFile": "app-release.apk"
1717
}
1818
],
19-
"elementType": "File"
19+
"elementType": "File",
20+
"baselineProfiles": [
21+
{
22+
"minApi": 28,
23+
"maxApi": 30,
24+
"baselineProfiles": [
25+
"baselineProfiles/1/app-release.dm"
26+
]
27+
},
28+
{
29+
"minApi": 31,
30+
"maxApi": 2147483647,
31+
"baselineProfiles": [
32+
"baselineProfiles/0/app-release.dm"
33+
]
34+
}
35+
],
36+
"minSdkVersionForDexing": 24
2037
}

0 commit comments

Comments
 (0)