Skip to content
This repository was archived by the owner on Sep 22, 2022. It is now read-only.

Commit a1e72cd

Browse files
committed
Updated versions, fixed typos in Readme
1 parent 5b9673e commit a1e72cd

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Set raw byte array asynchronously
7575
setRawData(byte[] data, OnSamplingListener callback);
7676
```
7777

78-
In case you have an scaled byte array you want to draw, as in, an array whose size is the amount of chunks to draw
78+
In case you have a scaled byte array you want to draw, i. e. an array whose size is the amount of chunks to draw
7979

8080

8181
```java

app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
33

44
android {
55
compileSdkVersion 25
6-
buildToolsVersion "25.0.0"
6+
buildToolsVersion "25.0.2"
77
defaultConfig {
88
applicationId "rm.com.audiogram"
99
minSdkVersion 15
@@ -26,9 +26,9 @@ android {
2626
dependencies {
2727
compile fileTree(dir: 'libs', include: ['*.jar'])
2828
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
29-
compile "com.android.support:recyclerview-v7:25.1.0"
30-
compile 'com.android.support:appcompat-v7:25.1.0'
31-
// compile 'com.github.alxrm:audiowave-progressbar:0.7'
29+
compile "com.android.support:recyclerview-v7:25.3.1"
30+
compile 'com.android.support:appcompat-v7:25.3.1'
31+
// compile 'com.github.alxrm:audiowave-progressbar:0.8'
3232

3333
compile "com.jakewharton:butterknife:8.5.1"
3434
compile "com.jakewharton:butterknife-compiler:8.5.1"

audiowave/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ apply plugin: 'kotlin-android'
33

44
android {
55
compileSdkVersion 25
6-
buildToolsVersion "25.0.0"
6+
buildToolsVersion "25.0.2"
77

88
defaultConfig {
99
minSdkVersion 15
1010
targetSdkVersion 25
1111
versionCode 1
12-
versionName "0.7"
12+
versionName "0.9"
1313
}
1414
buildTypes {
1515
release {

audiowave/src/main/kotlin/rm/com/audiowave/Sampler.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ internal fun ByteArray.paste(other: ByteArray): ByteArray {
6666
if (size == 0) return byteArrayOf()
6767

6868
return this.apply {
69-
forEachIndexed { i, byte ->
69+
forEachIndexed { i, _ ->
7070
this[i] = other.getOrElse(i, { this[i].abs })
7171
}
7272
}

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.0.6'
4+
ext.kotlin_version = '1.1.2-3'
55
repositories {
66
jcenter()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:2.2.3'
9+
classpath 'com.android.tools.build:gradle:2.3.3'
1010
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1111

1212
// NOTE: Do not place your application dependencies here; they belong
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Dec 28 10:00:20 PST 2015
1+
#Thu Apr 27 01:18:47 MSK 2017
22
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-2.14.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip

0 commit comments

Comments
 (0)