Skip to content

Commit

Permalink
to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ChillingVan committed Nov 12, 2016
1 parent b85dbb5 commit 0d5afd4
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 12 deletions.
15 changes: 10 additions & 5 deletions README-en.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,25 @@ Compare to GPUImage:
TextureView does not create a separate window but behaves as a regular View. This key difference allows a TextureView to be moved, transformed, animated, etc. For instance, you can make a TextureView semi-translucent by calling myView.setAlpha(0.5f)

## Requirements
* Android API14 or higher (OpenGL ES 2.0)
* Android API 14 or higher (OpenGL ES 2.0)

## Usage

### Gradle dependency

sample:
```groovy
repositories {
jcenter()
maven { url "https://jitpack.io" }
// in root build.gradle
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
// module build.gradle
dependencies {
compile 'com.github.ChillingVan:android-openGL-canvas:v1.1.0'
compile 'com.github.ChillingVan:android-openGL-canvas:v1.1.1'
}
```

Expand Down
15 changes: 10 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,25 @@


## 使用要求
* Android API14 以上(OpenGL ES 2.0 以上)
* Android API 14 以上(OpenGL ES 2.0 以上)

## 用法

### Gradle dependency

sample:
```groovy
repositories {
jcenter()
maven { url "https://jitpack.io" }
// in root build.gradle
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
// module build.gradle
dependencies {
compile 'com.github.ChillingVan:android-openGL-canvas:v1.1.0'
compile 'com.github.ChillingVan:android-openGL-canvas:v1.1.1'
}
```

Expand Down
4 changes: 2 additions & 2 deletions canvasgl/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 24
versionCode 101000
versionName "1.1.0"
versionCode 101010
versionName "1.1.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down

0 comments on commit 0d5afd4

Please sign in to comment.