aboutsummaryrefslogtreecommitdiffstats
path: root/build.gradle
blob: e73607bb176204897ac65970f021dbe7fa13878f (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
apply plugin: 'sdk-files'

sdk {
    common {
        path('files/tools_source.properties') { name 'source.properties' }
        path('files/plugin.prop') { into 'lib' }

        path('emulator/snapshot/snapshots.img') { into 'lib/emulator' }
        path('emulator/skins/dynamic') { into 'lib/emulator/skins/dynamic' }

        path('templates/build.template') { into 'lib' }
        path('templates/uibuild.template') { into 'lib' }
        path('templates/build_gradle.template') { into 'lib' }

        path('files/ant') { into 'ant' }
        path('files/sdk_files_NOTICE.txt') {
            into 'ant'
            name 'NOTICE.txt'
        }

        path('files/devices.xml') { into 'lib' }
        path('files/android.el') { into 'lib' }

        path('apps/SdkController') { into 'apps/SdkController' }

        path('files/typos') { into 'support' }
    }

    linux {

    }

    mac {

    }

    windows {

    }

}