Skip to content

Commit 3865337

Browse files
authored
Release v1.4.0
Release v1.4.0
2 parents 9931021 + 59a9ffc commit 3865337

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,4 +187,9 @@ fabric.properties
187187
!/gradle/wrapper/gradle-wrapper.jar
188188

189189
# End of https://www.toptal.com/developers/gitignore/api/android,androidstudio,kotlin
190-
feature/build
190+
feature/build
191+
app/.DS_Store
192+
193+
app/debug/
194+
195+
app/release/

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins {
1212
}
1313

1414
android {
15-
namespace = "team.aliens.dms.android.app"
15+
namespace = "team.aliens.dms"
1616
compileSdk = ProjectProperties.COMPILE_SDK
1717

1818
defaultConfig {

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
tools:targetApi="tiramisu">
2626

2727
<activity
28-
android:name=".MainActivity"
28+
android:name=".android.app.MainActivity"
2929
android:exported="true"
3030
android:screenOrientation="portrait">
3131

@@ -38,7 +38,7 @@
3838
<category android:name="android.intent.category.LAUNCHER" />
3939
</intent-filter>
4040
</activity>
41-
<service android:name=".service.DmsMessagingService"
41+
<service android:name=".android.app.service.DmsMessagingService"
4242
android:exported="true">
4343
<intent-filter>
4444
<action android:name="com.google.firebase.MESSAGING_EVENT" />

buildSrc/src/main/kotlin/ProjectProperties.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ object ProjectProperties {
22
const val COMPILE_SDK = 34
33
const val MIN_SDK = 23
44
const val TARGET_SDK = 34
5-
const val VERSION_CODE = 18
6-
const val VERSION_NAME = "1.3.9"
5+
const val VERSION_CODE = 23
6+
const val VERSION_NAME = "1.4.0"
77
}

0 commit comments

Comments
 (0)