Сравнить коммиты

...
3 Коммитов
Автор SHA1 Сообщение Дата
Anton Tananaev 1dcc26b47b Fix dependencies 2023-01-25 07:36:55 -08:00
Anton Tananaev 5580f0b6bf Update project files 2023-01-25 07:28:33 -08:00
Anton Tananaev ddf1f0fbe0 Match shortcut intents 2023-01-09 09:31:19 -08:00
3 изменённых файлов: 8 добавлений и 7 удалений
+4 -5
Просмотреть файл
@@ -9,8 +9,8 @@ android {
buildConfigField 'boolean', 'HIDDEN_APP', 'false' buildConfigField 'boolean', 'HIDDEN_APP', 'false'
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 33 targetSdkVersion 33
versionCode 79 versionCode 80
versionName '6.18' versionName '6.19'
multiDexEnabled true multiDexEnabled true
} }
namespace 'org.traccar.client' namespace 'org.traccar.client'
@@ -44,10 +44,9 @@ android {
} }
dependencies { dependencies {
implementation 'com.google.android.material:material:1.6.1' implementation 'com.google.android.material:material:1.6.1' // wait for preference-ktx update
implementation 'androidx.multidex:multidex:2.0.1' implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.preference:preference-ktx:1.2.0' implementation 'androidx.preference:preference-ktx:1.2.0'
implementation 'androidx.test:core-ktx:1.4.0'
implementation 'androidx.core:core-ktx:1.9.0' implementation 'androidx.core:core-ktx:1.9.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.github.judemanutd:autostarter:1.1.0' implementation 'com.github.judemanutd:autostarter:1.1.0'
@@ -60,7 +59,7 @@ dependencies {
googleImplementation 'com.google.firebase:firebase-core' googleImplementation 'com.google.firebase:firebase-core'
googleImplementation 'com.google.firebase:firebase-analytics' googleImplementation 'com.google.firebase:firebase-analytics'
googleImplementation 'com.google.firebase:firebase-crashlytics' googleImplementation 'com.google.firebase:firebase-crashlytics'
googleImplementation 'com.google.android.gms:play-services-location:21.0.0' googleImplementation 'com.google.android.gms:play-services-location:21.0.1'
googleImplementation 'com.google.android.play:core:1.10.3' googleImplementation 'com.google.android.play:core:1.10.3'
} }
+3 -1
Просмотреть файл
@@ -59,7 +59,9 @@
android:exported="true" android:exported="true"
android:label="@string/menu_shortcuts"> android:label="@string/menu_shortcuts">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.VIEW" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" /> <action android:name="android.intent.action.CREATE_SHORTCUT" />
</intent-filter> </intent-filter>
</activity> </activity>
+1 -1
Просмотреть файл
@@ -6,7 +6,7 @@ buildscript {
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:7.3.1' classpath 'com.android.tools.build:gradle:7.3.1'
classpath 'com.google.gms:google-services:4.3.14' classpath 'com.google.gms:google-services:4.3.15'
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2' classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
} }