Skip to content

Commit

Permalink
Bump version to 0.3.0 (and bump library and target sdk versions)
Browse files Browse the repository at this point in the history
  • Loading branch information
icasdri committed Jan 5, 2017
1 parent 9a744fb commit d80e3a5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Mather COPYING
Mather and all of its constituent files are licensed as follows
unless otherwise noted.

Copyright 2016 icasdri
Copyright 2016-2017 icasdri

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ To get rid of a previous calculation that may be cluttering your view, simply sw

**Mather** uses the [Gradle](https://gradle.org) build system for compilation, dependency, and asset management (including its external dependency on *Math.js*).

To build a debug version of the app, make sure you have a modern local Gradle installation in addition to the Android SDK and Build Tools. Then run the following. The build has been tested to work with the latest `Gradle 2.14`, `Android SDK 25`, and `Build Tools 24`.
To build a debug version of the app, make sure you have a modern local Gradle installation in addition to the Android SDK and Build Tools. Then run the following. The build has been tested to work with the latest `Gradle 3.2`, `Android SDK 25`, and `Build Tools 25`.

```
gradle build
Expand Down
14 changes: 7 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
compileSdkVersion 25
buildToolsVersion "25.0.1"

defaultConfig {
applicationId "org.icasdri.mather"
minSdkVersion 19
targetSdkVersion 23
versionCode 204
versionName '0.2.4'
targetSdkVersion 25
versionCode 300
versionName '0.3.0'

vectorDrawables.generatedDensities = ['mdpi', 'hdpi', 'xhdpi', 'xxhdpi', 'xxxhdpi']
}
Expand Down Expand Up @@ -72,9 +72,9 @@ void retrieveMathjs(String verWithHash) {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:cardview-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:appcompat-v7:25.0.1'
compile 'com.android.support:cardview-v7:25.0.1'
compile 'com.android.support:design:25.0.1'

compile 'com.afollestad.material-dialogs:core:0.9.0.2'

Expand Down

0 comments on commit d80e3a5

Please sign in to comment.