-
Notifications
You must be signed in to change notification settings - Fork 207
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
typ0520
committed
Dec 12, 2017
1 parent
5201338
commit f72e460
Showing
12 changed files
with
59 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
## 0.8.5 (2017-12-12) | ||
|
||
Bugfixes: | ||
|
||
- 修复7.0以后版本Application强转报错的问题 | ||
|
||
## 0.8.4 (2017-11-29) | ||
|
||
Bugfixes: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
fastdex-gradle/src/main/groovy/fastdex/build/task/FastdexIgnoreTask.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package fastdex.build.task | ||
|
||
import com.android.build.gradle.api.ApplicationVariant | ||
import org.gradle.api.DefaultTask | ||
import org.gradle.api.tasks.TaskAction | ||
|
||
/** | ||
* Created by tong on 17/12/12. | ||
*/ | ||
class FastdexIgnoreTask extends DefaultTask { | ||
ApplicationVariant androidVariant | ||
boolean proguardEnable | ||
boolean ignoreBuildType | ||
|
||
FastdexIgnoreTask() { | ||
group = 'fastdex' | ||
} | ||
|
||
@TaskAction | ||
def instantRun() { | ||
String buildTypeName = androidVariant.getBuildType().buildType.getName() | ||
project.logger.error("--------------------fastdex--------------------") | ||
if (ignoreBuildType) { | ||
project.logger.error("onlyHookDebug = true, build-type = ${buildTypeName}, just ignore") | ||
} | ||
else if (proguardEnable) { | ||
project.logger.error("fastdex android.buildTypes.${buildTypeName}.minifyEnabled=true, just ignore") | ||
} | ||
project.logger.error("--------------------fastdex--------------------") | ||
} | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
184 changes: 0 additions & 184 deletions
184
fastdex-runtime/src/main/java/fastdex/runtime/loader/AndroidNClassLoader.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters