Skip to content

Commit

Permalink
0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
typ0520 committed Nov 16, 2017
1 parent 264201e commit 99f518b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.8.1 (2017-11-16)

Bugfixes:

- fix error: Public symbol

## 0.8.0 (2017-11-2)

Features:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Android API 9(2.3)+ ; android-gradle-build 2.0.0+
}
dependencies {
classpath 'com.github.typ0520:fastdex-gradle:0.8.0'
classpath 'com.github.typ0520:fastdex-gradle:0.8.1'
}
}
````
Expand Down
Binary file modified fastdex-gradle/src/main/resources/fastdex-runtime.dex
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ public void onActivityResumed(Activity activity) {

public void onActivityPaused(Activity activity) {
sActivitiesRefs.put(activity, ACTIVITY_STARTED);
RuntimeMetaInfo runtimeMetaInfo = Fastdex.get().readRuntimeMetaInfoFromFile();
RuntimeMetaInfo runtimeMetaInfo = Fastdex.get().readRuntimeMetaInfoFromFile(false);
if (runtimeMetaInfo != null) {
boolean active = getTopActivity() != null;

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
org.gradle.daemon=true

groupId=com.github.typ0520
version=0.8.0
version=0.8.1

ANDROID_BUILD_MIN_SDK_VERSION=14
ANDROID_BUILD_TARGET_SDK_VERSION=22
Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ buildscript {
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
classpath "me.tatarka:gradle-retrolambda:3.7.0"
classpath 'com.jakewharton:butterknife-gradle-plugin:8.8.1'
classpath 'com.github.typ0520:fastdex-gradle:0.8.0'
classpath 'com.github.typ0520:fastdex-gradle:0.8.1'
}
}

Expand Down

0 comments on commit 99f518b

Please sign in to comment.