Initial commit: AIS Map Android application

This commit is contained in:
ОС Программист
2025-09-02 15:58:16 +03:00
commit 629b403dd2
78 changed files with 9209 additions and 0 deletions
+53
View File
@@ -0,0 +1,53 @@
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'
// Тестирование
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}