Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

switching from mobeel fat aar plugin to kezong fat aar plugin #101

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ buildscript {
exclude group: 'org.codehaus.groovy', module: 'groovy-all'
}
classpath 'net.ltgt.gradle:gradle-apt-plugin:0.21'
classpath 'gradle.plugin.com.mobbeel.plugin:mobbeel-fataar:1.2.0'
// classpath 'gradle.plugin.com.mobbeel.plugin:mobbeel-fataar:1.2.0'
classpath 'com.kezong:fat-aar:1.2.19'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down
11 changes: 7 additions & 4 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ apply plugin: 'com.android.library'
apply plugin: 'jacoco'
apply plugin: 'jacoco-android'
apply plugin: 'net.ltgt.apt'
apply plugin: 'com.mobbeel.plugin'
//apply plugin: 'com.mobbeel.plugin'
apply plugin: 'com.kezong.fat-aar'
apply from: '../config/quality.gradle'
apply from: '../maven_push.gradle'

Expand Down Expand Up @@ -56,9 +57,11 @@ jacocoAndroidUnitTestReport {
xml.enabled true
}

fatAARConfig {
includeAllInnerDependencies false
}
//fatAARConfig {
// includeAllInnerDependencies false
//}

configurations.embed.transitive = false

dependencies {
api deps.thinkgear
Expand Down