Skip to content

Commit

Permalink
Release Version 1.1.0
Browse files Browse the repository at this point in the history
- Edited url to adsb exchange
- Converted to latest kotlin version
  • Loading branch information
amnesica committed Jan 30, 2022
1 parent f2e3f19 commit 97b69ac
Show file tree
Hide file tree
Showing 17 changed files with 56 additions and 284 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*.iml
.gradle
/local.properties
/.idea
/.idea/caches
/.idea/libraries
/.idea/modules.xml
Expand Down
1 change: 0 additions & 1 deletion .idea/.name

This file was deleted.

138 changes: 0 additions & 138 deletions .idea/codeStyles/Project.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/codeStyles/codeStyleConfig.xml

This file was deleted.

17 changes: 0 additions & 17 deletions .idea/dictionaries/amnesica.xml

This file was deleted.

20 changes: 0 additions & 20 deletions .idea/gradle.xml

This file was deleted.

25 changes: 0 additions & 25 deletions .idea/jarRepositories.xml

This file was deleted.

9 changes: 0 additions & 9 deletions .idea/misc.xml

This file was deleted.

12 changes: 0 additions & 12 deletions .idea/runConfigurations.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.

14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# ADSB-Exchange Map
<p align="center">
<img src="/static/logo/logo.png" height="150" title="Logo">
</p>

![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=1.0.1&x2=0)
<h1 align="center">ADSB-Exchange Map</h1>

<img alt="Logo" src="/static/logo/logo.png"/>
![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=1.1.0&x2=0)

This app is an unofficial app for the ADS-B Exchange map (https://globe.adsbexchange.com/).

## Screenshot
## Screenshots
<div style="display:flex;">
<img alt="App image" src="/static/screenshots/adsb_mockup_01.png" width="24%">
<img alt="App image" src="/static/screenshots/adsb_mockup_02.png" width="24%">
Expand All @@ -17,9 +19,6 @@ This app is an unofficial app for the ADS-B Exchange map (https://globe.adsbexch
## Features
It displays a legend for the icons of the surface to help the spotter and (of course) the map itself.

## Download
The apk file can be found [here](https://github.com/amnesica/ADSB-Exchange-Map/blob/master/apk/).

## Special
* no advertising
* only necessary permissions
Expand All @@ -28,4 +27,5 @@ The apk file can be found [here](https://github.com/amnesica/ADSB-Exchange-Map/b
I have no connection to adsbexchange.com. I respect the rights of adsbexchange.com. If you discover that content in my app violates copyrights, please inform me so I can remove the content.

## Permissions

* INTERNET: Required to access https://globe.adsbexchange.com/
Binary file removed apk/adsbExchangeMap.apk
Binary file not shown.
24 changes: 14 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 30
compileSdkVersion 31
buildToolsVersion "29.0.3"

defaultConfig {
applicationId "com.amnesica.adsb_exchange_map"
minSdkVersion 23
targetSdkVersion 30
versionCode 2
versionName "1.0.1"
targetSdkVersion 31
versionCode 3
versionName "1.1.0"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand All @@ -23,16 +23,20 @@ android {
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.core:core-ktx:1.3.1'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'com.google.android.material:material:1.2.0'
testImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation 'com.google.android.material:material:1.5.0'
}
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
android:name=".MapActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:theme="@style/AppTheme.NoActionBar"
android:label="@string/app_name">
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
Expand Down
Loading

0 comments on commit 97b69ac

Please sign in to comment.