Skip to content

Commit

Permalink
Release to v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
JessYanCoding committed Jan 8, 2019
1 parent c23ac90 commit 1231132
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<p align="center">
<a href="https://bintray.com/jessyancoding/maven/autosize/_latestVersion">
<img src="https://img.shields.io/badge/Jcenter-v1.1.1-brightgreen.svg?style=flat-square" alt="Latest Stable Version" />
<img src="https://img.shields.io/badge/Jcenter-v1.1.2-brightgreen.svg?style=flat-square" alt="Latest Stable Version" />
</a>
<a href="https://travis-ci.org/JessYanCoding/AndroidAutoSize">
<img src="https://travis-ci.org/JessYanCoding/AndroidAutoSize.svg?branch=master" alt="Build Status" />
Expand Down Expand Up @@ -76,7 +76,7 @@

## Download
``` gradle
implementation 'me.jessyan:autosize:1.1.1'
implementation 'me.jessyan:autosize:1.1.2'
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<p align="center">
<a href="https://bintray.com/jessyancoding/maven/autosize/_latestVersion">
<img src="https://img.shields.io/badge/Jcenter-v1.1.1-brightgreen.svg?style=flat-square" alt="Latest Stable Version" />
<img src="https://img.shields.io/badge/Jcenter-v1.1.2-brightgreen.svg?style=flat-square" alt="Latest Stable Version" />
</a>
<a href="https://travis-ci.org/JessYanCoding/AndroidAutoSize">
<img src="https://travis-ci.org/JessYanCoding/AndroidAutoSize.svg?branch=master" alt="Build Status" />
Expand Down Expand Up @@ -80,7 +80,7 @@

## Download
``` gradle
implementation 'me.jessyan:autosize:1.1.1'
implementation 'me.jessyan:autosize:1.1.2'
```

## Usage
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ext {
targetSdkVersion = 28
compileSdkVersion = 28
buildToolsVersion = "28.0.3"
versionCode = 33
versionName = "1.1.1"
versionCode = 34
versionName = "1.1.2"
appcompat_v7 = "com.android.support:appcompat-v7:28.0.0"
}
2 changes: 1 addition & 1 deletion demo-subunits/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android {
}

dependencies {
// implementation 'me.jessyan:autosize:1.1.1'
// implementation 'me.jessyan:autosize:1.1.2'
implementation project(':autosize')
implementation rootProject.appcompat_v7
testImplementation 'junit:junit:4.12'
Expand Down
2 changes: 1 addition & 1 deletion demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android {
}

dependencies {
// implementation 'me.jessyan:autosize:1.1.1'
// implementation 'me.jessyan:autosize:1.1.2'
implementation project(':autosize')
implementation rootProject.appcompat_v7
implementation 'cat.ereza:customactivityoncrash:2.2.0'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ protected void onCreate(Bundle savedInstanceState) {
public void goCustomAdaptFragment(View view) {
startActivity(new Intent(getApplicationContext(), FragmentHost.class));
}

/**
* 是否按照宽度进行等比例适配 (为了保证在高宽比不同的屏幕上也能正常适配, 所以只能在宽度和高度之中选择一个作为基准进行适配)
*
Expand Down

0 comments on commit 1231132

Please sign in to comment.