Skip to content
This repository has been archived by the owner on Feb 18, 2021. It is now read-only.

Commit

Permalink
- chg: new icon
Browse files Browse the repository at this point in the history
- chg: removed duplicities in auto-generated Android icon
- chg: changed to Gradle 4.6
  • Loading branch information
menion committed Jun 24, 2018
1 parent 4d84641 commit 618430d
Show file tree
Hide file tree
Showing 24 changed files with 12 additions and 226 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ apply plugin: 'com.android.application'
android {
// defaults
compileSdkVersion Integer.valueOf(PARAM_COMPILE_SDK_VERSION)
buildToolsVersion PARAM_BUILD_TOOLS_VERSION
buildToolsVersion ANDROID_BUILD_TOOLS

defaultConfig {
minSdkVersion Integer.valueOf(PARAM_MIN_SDK_VERSION)
targetSdkVersion Integer.valueOf(PARAM_TARGET_SDK_VERSION)

versionCode 14
versionName '0.5'
versionCode 16
versionName '0.7'
}

// exclude from result
Expand Down Expand Up @@ -74,7 +74,7 @@ android {

dependencies {
// Locus API
api 'com.asamm:locus-api-android:' + LIB_LOCUS_API
implementation 'com.asamm:locus-api-android:' + LIB_LOCUS_API

// Android support libraries
implementation 'com.android.support:appcompat-v7:' + LIB_ANDROID_SUPPORT
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ private GraphHopper getGraphHooper() {
/**
* Set parameters based on properties file.
* @param gh graphHopper instance
* @throws IOException excetion in case of any problems with loading properties file
* @throws IOException exception in case of any problems with loading properties file
*/
private void setGraphHopperProperties(GraphHopper gh, File routingItem) throws IOException {
// set default parameters
Expand Down
Binary file modified app/src/main/res/drawable-hdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/src/main/res/drawable-mdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/src/main/res/drawable-nodpi/ic_launcher_xhdpi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 0 additions & 34 deletions app/src/main/res/drawable-v24/ic_launcher_foreground.xml

This file was deleted.

Binary file modified app/src/main/res/drawable-xhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified app/src/main/res/drawable-xxhdpi/ic_launcher.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
171 changes: 0 additions & 171 deletions app/src/main/res/drawable/ic_launcher_background.xml

This file was deleted.

5 changes: 0 additions & 5 deletions app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml

This file was deleted.

5 changes: 0 additions & 5 deletions app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml

This file was deleted.

Binary file removed app/src/main/res/mipmap-hdpi/ic_launcher.png
Binary file not shown.
Binary file removed app/src/main/res/mipmap-hdpi/ic_launcher_round.png
Binary file not shown.
Binary file removed app/src/main/res/mipmap-mdpi/ic_launcher.png
Binary file not shown.
Binary file removed app/src/main/res/mipmap-mdpi/ic_launcher_round.png
Binary file not shown.
Binary file removed app/src/main/res/mipmap-xhdpi/ic_launcher.png
Binary file not shown.
Binary file removed app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
Binary file not shown.
Binary file removed app/src/main/res/mipmap-xxhdpi/ic_launcher.png
Binary file not shown.
Binary file removed app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
Binary file not shown.
Binary file removed app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:' + BUILD_TOOLS
classpath 'com.android.tools.build:gradle:' + ANDROID_PLUGIN_GRADLE
}
}

Expand Down
9 changes: 5 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
# BASE

PARAM_COMPILE_SDK_VERSION = 27
PARAM_BUILD_TOOLS_VERSION = 27.0.3
PARAM_MIN_SDK_VERSION = 15
PARAM_TARGET_SDK_VERSION = 27

# https://developer.android.com/studio/releases/build-tools.html
BUILD_TOOLS = 3.0.1

# LIBRARIES

# https://developer.android.com/studio/releases/gradle-plugin.html
ANDROID_PLUGIN_GRADLE = 3.0.1
# https://developer.android.com/studio/releases/build-tools.html
ANDROID_BUILD_TOOLS = 27.0.3

# base support version
LIB_ANDROID_SUPPORT = 27.1.1
# Locus API
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https://services.gradle.org/distributions/gradle-4.5-all.zip
distributionUrl=https://services.gradle.org/distributions/gradle-4.6-all.zip

0 comments on commit 618430d

Please sign in to comment.