updated version

This commit is contained in:
Mariotaku Lee 2016-02-21 19:26:18 +08:00
parent 85c8aa931d
commit 1b4e664d21
5 changed files with 6 additions and 7 deletions

View File

@ -53,7 +53,7 @@ script: ./gradlew build --no-daemon --stacktrace
deploy: deploy:
provider: releases provider: releases
prerelease: true prerelease: false
api_key: api_key:
secure: WKtKwda3hegqO9QVujdonNoL2ESJUR80WHNq/13wDsbCABo/GNnuqHNYZmml3wAifEKKeCEYfNZRUuHQ8eHs54Lj5BlGRX5i+1LrGhhgnVFQgmrhIv4RJuVQ663kDEh+Jwo4vowJ2mxNDvLvOhfZwxjULPDiknqy6u5PyW3id5M= secure: WKtKwda3hegqO9QVujdonNoL2ESJUR80WHNq/13wDsbCABo/GNnuqHNYZmml3wAifEKKeCEYfNZRUuHQ8eHs54Lj5BlGRX5i+1LrGhhgnVFQgmrhIv4RJuVQ663kDEh+Jwo4vowJ2mxNDvLvOhfZwxjULPDiknqy6u5PyW3id5M=
file_glob: true file_glob: true

View File

@ -27,7 +27,7 @@ android {
minSdkVersion 14 minSdkVersion 14
targetSdkVersion 23 targetSdkVersion 23
versionCode 1 versionCode 1
versionName "1.0" versionName "0.9"
} }
buildTypes { buildTypes {
release { release {

View File

@ -25,8 +25,8 @@ android {
applicationId "org.mariotaku.extension.twitlonger" applicationId "org.mariotaku.extension.twitlonger"
minSdkVersion 14 minSdkVersion 14
targetSdkVersion 23 targetSdkVersion 23
versionCode 6 versionCode 7
versionName "1.5" versionName "1.6"
} }
buildTypes { buildTypes {
release { release {

View File

@ -21,8 +21,8 @@ android {
applicationId "org.mariotaku.twidere" applicationId "org.mariotaku.twidere"
minSdkVersion 14 minSdkVersion 14
targetSdkVersion 23 targetSdkVersion 23
versionCode 147 versionCode 148
versionName "3.0.5 (snapshot)" versionName "3.0.5"
multiDexEnabled true multiDexEnabled true
buildConfigField 'boolean', 'LEAK_CANARY_ENABLED', 'Boolean.parseBoolean("false")' buildConfigField 'boolean', 'LEAK_CANARY_ENABLED', 'Boolean.parseBoolean("false")'

View File

@ -62,7 +62,6 @@ public class ParcelableActivitiesAdapter extends AbsActivitiesAdapter<List<Parce
final long timestamp = cursor.getLong(indices.timestamp); final long timestamp = cursor.getLong(indices.timestamp);
final long max_position = cursor.getLong(indices.max_position); final long max_position = cursor.getLong(indices.max_position);
final long min_position = cursor.getLong(indices.min_position); final long min_position = cursor.getLong(indices.min_position);
final long id = cursor.getLong(indices.timestamp);
return ParcelableActivity.calculateHashCode(account_id, timestamp, max_position, return ParcelableActivity.calculateHashCode(account_id, timestamp, max_position,
min_position); min_position);
} }