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

Commit

Permalink
Updated versions, fixed typos in Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
alxrm committed Sep 2, 2017
1 parent 5b9673e commit a1e72cd
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Set raw byte array asynchronously
setRawData(byte[] data, OnSamplingListener callback);
```

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
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


```java
Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'

android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "rm.com.audiogram"
minSdkVersion 15
Expand All @@ -26,9 +26,9 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
compile "com.android.support:recyclerview-v7:25.1.0"
compile 'com.android.support:appcompat-v7:25.1.0'
// compile 'com.github.alxrm:audiowave-progressbar:0.7'
compile "com.android.support:recyclerview-v7:25.3.1"
compile 'com.android.support:appcompat-v7:25.3.1'
// compile 'com.github.alxrm:audiowave-progressbar:0.8'

compile "com.jakewharton:butterknife:8.5.1"
compile "com.jakewharton:butterknife-compiler:8.5.1"
Expand Down
4 changes: 2 additions & 2 deletions audiowave/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ apply plugin: 'kotlin-android'

android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
buildToolsVersion "25.0.2"

defaultConfig {
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "0.7"
versionName "0.9"
}
buildTypes {
release {
Expand Down
2 changes: 1 addition & 1 deletion audiowave/src/main/kotlin/rm/com/audiowave/Sampler.kt
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ internal fun ByteArray.paste(other: ByteArray): ByteArray {
if (size == 0) return byteArrayOf()

return this.apply {
forEachIndexed { i, byte ->
forEachIndexed { i, _ ->
this[i] = other.getOrElse(i, { this[i].abs })
}
}
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
ext.kotlin_version = '1.0.6'
ext.kotlin_version = '1.1.2-3'
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.android.tools.build:gradle:2.3.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

// NOTE: Do not place your application dependencies here; they belong
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Mon Dec 28 10:00:20 PST 2015
#Thu Apr 27 01:18:47 MSK 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip

0 comments on commit a1e72cd

Please sign in to comment.