Skip to content

Commit

Permalink
fixed issues;
Browse files Browse the repository at this point in the history
updated lib and gradle version;
updated README.md;
  • Loading branch information
ponomarenko-cr committed Aug 2, 2016
1 parent d45a726 commit 3b904b6
Showing 4 changed files with 15 additions and 14 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# WaveInApp [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) <img src="https://www.cleveroad.com/public/comercial/label-android.svg" height="20"> <a href="https://www.cleveroad.com/?utm_source=github&utm_medium=label&utm_campaign=contacts"><img src="https://www.cleveroad.com/public/comercial/label-cleveroad.svg" height="20"></a>
# WaveInApp [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) <img src="https://www.cleveroad.com/images/old_blog/label-android.svg" height="20"> <a href="https://www.cleveroad.com/?utm_source=github&utm_medium=label&utm_campaign=contacts"><img src="https://www.cleveroad.com/images/old_blog/label-cleveroad.svg" height="20"></a>
![Header image](/images/header.jpg)

## Welcome to WaveInApp - Audio Visualization View with wave effect.
@@ -24,7 +24,7 @@ To include this library to your project add dependency in **build.gradle** file:

```groovy
dependencies {
compile 'com.cleveroad:audiovisualization:0.9.3'
compile 'com.cleveroad:audiovisualization:0.9.4'
}
```

@@ -166,7 +166,8 @@ Your handler also will receive **onResume()**, **onPause()** and **release()** e

| Version | Changes |
| --- | --- |
| v.0.9.3 | Fixed concurrent modification exception. Added ability to set number of bubbles per layer "
| v.0.9.4 | Fixed issues |
| v.0.9.3 | Fixed concurrent modification exception. Added ability to set number of bubbles per layer |
| v.0.9.2 | Added voice recording example. Added ability to build audio visualization renderer. |
| v.0.9.1 | Added ability to set custom dBm handler implementations; implemented SpeechRecognizerDbmHandler |
| v.0.9.0 | First public release |
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 24
buildToolsVersion "24.0.0"

defaultConfig {
applicationId "com.cleveroad.audiovisualization.example"
minSdkVersion 11
targetSdkVersion 23
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
@@ -22,6 +22,6 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:appcompat-v7:24.1.1'
compile project(':library')
}
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
VERSION_NAME=0.9.3
VERSION_CODE=4
VERSION_NAME=0.9.4
VERSION_CODE=5
GROUP=com.cleveroad

POM_DESCRIPTION=Implementation of music player concept. When music plays the waves are active, and once it is paused or stopped waves calm down.
POM_DESCRIPTION=Implementation of music player concept. When music plays the waves are active, and once it is paused or stopped waves calm down.

POM_URL=https://github.com/Cleveroad/WaveInApp
POM_SCM_URL=https://github.com/Cleveroad/WaveInApp
8 changes: 4 additions & 4 deletions library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 24
buildToolsVersion "24.0.0"

defaultConfig {
minSdkVersion 11
targetSdkVersion 23
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
@@ -23,7 +23,7 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:appcompat-v7:24.1.1'
}

apply from: './gradle-mvn-push.gradle'

0 comments on commit 3b904b6

Please sign in to comment.