summaryrefslogtreecommitdiff
path: root/library/rules.gradle
blob: 9baa390fc8476390b7ea4b5913e3a43147481194 (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
/**
 * Base rules for building setup wizard library. This build file is not used directly but rather
 * included in scripts like build.gradle or standalone.gradle using 'apply from'.
 *
 * This allows the dependencies to be configured so that for builds in the Android tree, the
 * dependencies like support library is built directly from source, while for standalone builds they
 * will be fetched from maven central.
 */

apply plugin: 'com.android.library'

android {

    publishNonDefault true

    flavorDimensions 'compat'

    productFlavors {
        // DEPRECATED: Platform version that will not include the compatibility libraries
        platformDeprecated {
            dimension 'compat'
            // TODO(yukl): Bump this file to v28 once we can properly test that
            minSdkVersion 27
        }

        // Provides backwards compatibility for Gingerbread or above, using support libraries.
        gingerbreadCompat {
            dimension 'compat'
            minSdkVersion 9
        }
    }

    sourceSets {
        main {
            manifest.srcFile 'main/AndroidManifest.xml'
            java.srcDirs = ['main/src']
            resources.srcDirs = ['main/src']
            res.srcDirs = ['main/res']
        }

        platformDeprecated {
            java.srcDirs = ['platform/src']
            res.srcDirs = ['platform/res']
        }

        gingerbreadCompat {
            java.srcDirs = ['gingerbread/src', 'recyclerview/src']
            res.srcDirs = ['gingerbread/res', 'recyclerview/res']
        }
    }
}

dependencies {
    // Read the dependencies from the "deps" map in the extra properties.
    //
    // For builds in the Android tree we want to build the dependencies from source
    // for reproducible builds, for example in build.gradle define something like
    // this:
    //      ext {
    //          deps = ['project-name': project(':project-path')]
    //      }
    //
    // For standalone project clients, since the source may not be available, we
    // fetch the dependencies from maven. For example in standalone.gradle define
    // something like this:
    //      ext {
    //          deps = ['project-name': 'com.example.group:project-name:1.0.0']
    //      }
    //
    platformDeprecatedCompile deps['support-annotations']

    gingerbreadCompatCompile deps['support-appcompat-v7']
    gingerbreadCompatCompile deps['support-recyclerview-v7']
}