Skip to content

Commit

Permalink
update: 1.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
liangjingkanji committed Jun 3, 2022
1 parent 85eef2c commit 88aed01
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

<p align="center"><strong>整个应用的缺省页</strong></p><br>

<p align="center"><a href="http://liangjingkanji.github.io/StateLayout/">使用文档</a> | <a href="https://statelayout-1252757332.cos-website.ap-guangzhou.myqcloud.com">备用访问</a></p>
<p align="center">
<a href="http://liangjingkanji.github.io/StateLayout/">使用文档</a>
| <a href="https://statelayout-1252757332.cos-website.ap-guangzhou.myqcloud.com">备用访问</a>
| <a href="https://github.com/liangjingkanji/StateLayout/releases/download/1.3.4/state-layout-sample.apk">下载体验</a>
</p>

<p align="center">
<a href="https://jitpack.io/#liangjingkanji/StateLayout"><img src="https://jitpack.io/v/liangjingkanji/StateLayout.svg"/></a>
Expand Down Expand Up @@ -72,7 +76,7 @@ dependencyResolutionManagement {
然后在 module 的 build.gradle 添加依赖框架

```groovy
implementation 'com.github.liangjingkanji:StateLayout:1.3.3'
implementation 'com.github.liangjingkanji:StateLayout:1.3.4'
```

<br>
Expand Down
1 change: 1 addition & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/build
/release
14 changes: 14 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,34 @@ apply plugin: 'kotlin-kapt'

android {
compileSdkVersion 30
signingConfigs {
signed {
storeFile file("../signed")
storePassword "s73dfyUxkjuq"
keyAlias "key0"
keyPassword "s73dfyUxkjuq"
}
}
defaultConfig {
applicationId "com.example.statelayout"
minSdkVersion 19
targetSdkVersion 30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
signingConfig signingConfigs.signed
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
applicationVariants.all {
it.outputs.each { output ->
output.outputFileName = "state-layout-sample.apk"
}
}
buildFeatures.dataBinding = true
}

Expand Down
Binary file added signed
Binary file not shown.

0 comments on commit 88aed01

Please sign in to comment.