generated from Grigo/AndroidTemplate
41432665ea
- Яндекс/MapForge: правки в менеджерах и обёртках маркеров (улучшена отрисовка/логика) - NMEAParser: корректировки парсинга и стабильности - Модель AISVessel: уточнение полей/логики - Настройки: правки в SettingsActivity и SettingsManager, актуализация AppController - UI: обновлены activity_main, activity_settings, bottom_sheet_ais_vessel; меню main_menu - Ресурсы: добавлен drawable/targetclassa.xml, обновлён drawable/target.xml - Конфигурация: правки AndroidManifest и app/build.gradle - Прочее: изменения в .idea (не влияют на сборку)
60 lines
2.1 KiB
Groovy
60 lines
2.1 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace 'com.grigowashere.aismap'
|
|
compileSdk 35
|
|
|
|
defaultConfig {
|
|
applicationId "com.grigowashere.aismap"
|
|
minSdk 30
|
|
targetSdk 35
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation libs.appcompat
|
|
implementation libs.material
|
|
implementation libs.activity
|
|
implementation libs.constraintlayout
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
implementation 'com.google.android.material:material:1.11.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
// Яндекс.Карты
|
|
implementation 'com.yandex.android:maps.mobile:4.4.0-full'
|
|
|
|
implementation group: 'org.mapsforge', name: 'mapsforge-map-android', version: '0.25.0'
|
|
implementation group: 'org.mapsforge', name: 'mapsforge-themes', version: '0.25.0'
|
|
implementation group: 'org.mapsforge', name: 'mapsforge-map', version: '0.25.0'
|
|
implementation group: 'org.mapsforge', name: 'mapsforge-map-reader', version: '0.25.0'
|
|
implementation group: 'org.mapsforge', name: 'mapsforge-core', version: '0.25.0'
|
|
|
|
// Room
|
|
implementation "androidx.room:room-runtime:2.6.1"
|
|
annotationProcessor "androidx.room:room-compiler:2.6.1"
|
|
// Lifecycle (для сервисов/репозитория при необходимости)
|
|
implementation 'androidx.lifecycle:lifecycle-runtime:2.8.3'
|
|
implementation 'androidx.lifecycle:lifecycle-livedata:2.8.3'
|
|
|
|
// Тестирование
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
|
} |