summaryrefslogtreecommitdiff
path: root/extensions/library/build.gradle
blob: e37cd171c0afbffc32937f7b2b223bf8388181d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/*
 * Copyright (C) 2014 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
import java.nio.file.StandardCopyOption;
import java.nio.file.Files;

import com.android.build.api.transform.Format;
import com.android.build.api.transform.QualifiedContent;
import com.android.build.api.transform.QualifiedContent.ContentType;
import com.android.build.api.transform.QualifiedContent.Scope;
import com.android.build.api.transform.Transform;
import com.android.build.api.transform.Context;
import com.android.build.api.transform.TransformInput;
import com.android.build.api.transform.TransformOutputProvider;
import com.android.build.api.transform.TransformException;
import com.android.build.gradle.internal.pipeline.TransformManager;
// Top-level build file where you can add dataBindingConfiguration options common to all sub-projects/modules.

apply plugin: 'com.android.library'

android {
    compileSdkVersion dataBindingConfig.compileSdkVersion
    buildToolsVersion dataBindingConfig.buildToolsVersion

    defaultConfig {
        minSdkVersion 14
        targetSdkVersion dataBindingConfig.targetSdkVersion
        versionCode 1
        versionName "1.0"
        consumerProguardFiles 'proguard-rules.txt'
    }
    compileOptions {
        sourceCompatibility dataBindingConfig.javaTargetCompatibility
        targetCompatibility dataBindingConfig.javaSourceCompatibility
    }
    buildTypes {
        release {
            minifyEnabled false
        }
    }
    packagingOptions {
        exclude 'META-INF/services/javax.annotation.processing.Processor'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
        exclude 'android/databinding/DataBinderMapperImpl.class'
    }
    buildTypes.all {
        consumerProguardFiles 'proguard-consumer-rules.pro'
    }

    publishing {
        singleVariant("release")
    }
}

dependencies {
    implementation rootProject.ext.libs.android_support_collection
    api "androidx.databinding:databinding-common:${dataBindingConfig.version}"
    api project(':viewbinding')
    api rootProject.ext.libs.android_arch_lifecycle_runtime
    compileOnly rootProject.ext.libs.lifecycle_livedata
    compileOnly rootProject.ext.libs.fragments
}

//create jar tasks
android.libraryVariants.all { variant ->
    def name = variant.buildType.name

    if (name.equals(com.android.builder.core.BuilderConstants.DEBUG)) {
        return // Skip debug builds.
    }
    def suffix = name.capitalize()

    def sourcesJarTask = project.tasks.create(name: "sourceJar${suffix}", type: Jar) {
        classifier = 'sources'
        from android.sourceSets.main.java.srcDirs
    }
}

afterEvaluate {
    publishing {
        publications {
            release(MavenPublication) {
                artifactId = 'databinding-runtime'
                from components.release
                artifact tasks.named("sourceJarRelease")

                pom {
                    licenses {
                        license {
                            name = dataBindingConfig.licenseName
                            url = dataBindingConfig.licenseUrl
                            distribution = dataBindingConfig.licenseDistribution
                        }
                    }
                }
            }
        }
    }
}

class ExcludeShimTransform extends Transform {
    Project project;
    public ExcludeShimTransform(Project project) {
        this.project = project;
    }
    public Set<ContentType> getInputTypes() {
        return TransformManager.CONTENT_CLASS;
    }

    public Set<Scope> getScopes() {
        def result = new HashSet<Scope>();
        result.add(Scope.PROJECT);
        return result;
    }

    public Set<Scope> getReferencedScopes() {
        return TransformManager.SCOPE_FULL_LIBRARY_WITH_LOCAL_JARS;
    }

    public boolean isIncremental() {
        return false;
    }

    public String getName() {
        return "DataBindingExcludeShimTransform";
    }

    public void transform(Context context, Collection<TransformInput> inputs,
            Collection<TransformInput> referencedInputs,
            TransformOutputProvider outputProvider,
            boolean isIncremental) throws IOException, TransformException, InterruptedException {
        inputs.each { transformInput ->
            transformInput.getDirectoryInputs().each {
                File outputDir = outputProvider.getContentLocation("data-binding-filtered",
                        it.getContentTypes(), it.getScopes(), Format.DIRECTORY);
                outputDir.delete();
                outputDir.mkdirs();
                FileTree tree = project.fileTree(dir: it.getFile())
                tree.include '**/*.class'
                tree.exclude 'androidx/databinding/DataBindingComponent.*'
                tree.exclude 'androidx/databinding/DataBinderMapperImpl.*'
                java.nio.file.Path sourcePath = it.getFile().toPath()
                java.nio.file.Path outputPath = outputDir.toPath()
                tree.each { file ->
                        java.nio.file.Path fileOutputPath = outputPath.resolve(sourcePath.relativize(file.toPath()))
                        fileOutputPath.toFile().getParentFile().mkdirs()
                        Files.copy(file.toPath(), fileOutputPath , StandardCopyOption.REPLACE_EXISTING)
                }
            }
        }
    }
}

android.registerTransform(new ExcludeShimTransform(project))

task prebuildAar(type : Copy) {
    dependsOn tasks.named("publish")
    from "$buildDir/outputs/aar/library-release.aar"
    into dataBindingConfig.prebuildFolder
    rename { String fileName ->
        "databinding-library.aar"
    }
}