Skip to content
This repository was archived by the owner on Apr 23, 2026. It is now read-only.

Commit 4961ef9

Browse files
authored
Merge pull request #47 from ngageoint/develop
Release 2.1.1
2 parents 6db1bff + 3b2d52b commit 4961ef9

119 files changed

Lines changed: 8009 additions & 1270 deletions

File tree

Some content is hidden

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

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
steps:
1111
- name: Checkout Repository
1212
uses: actions/checkout@v1
13-
- name: set up JDK 1.8
13+
- name: set up JDK 11
1414
uses: actions/setup-java@v1
1515
with:
16-
java-version: 1.8
16+
java-version: 11
1717
- name: mobsfscan
1818
uses: MobSF/mobsfscan@0.0.8
1919
with:

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
mavenLocal()
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:4.2.2'
11+
classpath 'com.android.tools.build:gradle:7.0.3'
1212
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip

mapcache/build.gradle

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,19 @@ def googleMapsApiReleaseKey = hasProperty('RELEASE_MAPS_MAPCACHE_API_KEY') ? REL
44
def googleMapsApiKeyDebug = hasProperty('DEBUG_MAPS_API_KEY') ? DEBUG_MAPS_API_KEY : ''
55

66
android {
7-
compileSdkVersion 30
7+
compileSdkVersion 31
88

9-
dexOptions {
10-
javaMaxHeapSize "4g"
11-
}
129
compileOptions {
13-
sourceCompatibility JavaVersion.VERSION_1_8
14-
targetCompatibility JavaVersion.VERSION_1_8
10+
sourceCompatibility JavaVersion.VERSION_11
11+
targetCompatibility JavaVersion.VERSION_11
1512
}
1613
defaultConfig {
1714
applicationId "mil.nga.mapcache"
1815
resValue "string", "applicationId", applicationId
1916
minSdkVersion 21
20-
targetSdkVersion 29
21-
versionCode 38
22-
versionName '2.1.0'
17+
targetSdkVersion 31
18+
versionCode 39
19+
versionName '2.1.1'
2320
multiDexEnabled true
2421
}
2522
buildTypes {
@@ -56,13 +53,14 @@ dependencies {
5653
api 'com.google.android.material:material:1.0.0'
5754
api 'androidx.preference:preference:1.1.1'
5855
api 'androidx.lifecycle:lifecycle-extensions:2.2.0'
59-
api 'mil.nga.geopackage.map:geopackage-android-map:6.0.2' // comment out to build locally
56+
api 'mil.nga.geopackage.map:geopackage-android-map:6.1.3' // comment out to build locally
6057
//api project(':geopackage-map') // uncomment me to build locally
6158
api 'androidx.multidex:multidex:2.0.1'
6259
implementation 'androidx.exifinterface:exifinterface:1.3.3'
6360
implementation 'com.google.android.gms:play-services-location:18.0.0'
6461
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
6562
implementation 'androidx.viewpager2:viewpager2:1.1.0-alpha01'
63+
implementation 'org.locationtech.jts:jts-core:1.18.2'
6664
testImplementation 'androidx.multidex:multidex:2.0.1'
6765
testImplementation 'junit:junit:4.13.1'
6866
implementation 'com.github.matomo-org:matomo-sdk-android:v2.0.0'

mapcache/src/main/AndroidManifest.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
android:name=".MainActivity"
2727
android:configChanges="keyboardHidden|orientation|screenSize"
2828
android:label="@string/app_name"
29+
android:exported="true"
2930
android:screenOrientation="unspecified">
3031
<intent-filter>
3132
<action android:name="android.intent.action.MAIN" />
@@ -101,6 +102,9 @@
101102
<activity
102103
android:name=".preferences.TileUrlActivity"
103104
android:label="@string/title_activity_saved_tile_urls" />
105+
<activity
106+
android:name=".preferences.BasemapSettingsActivity"
107+
android:label="BasemapSettingsActivity" />
104108
<activity
105109
android:name=".preferences.PrivacyPolicyActivity"
106110
android:label="@string/title_activity_privacy_policy" />

0 commit comments

Comments
 (0)