1937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar/*
2937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar * Copyright (C) 2016 The Android Open Source Project
3937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar *
4937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar * Licensed under the Apache License, Version 2.0 (the "License");
5937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar * you may not use this file except in compliance with the License.
6937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar * You may obtain a copy of the License at
7937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar *
8937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar *      http://www.apache.org/licenses/LICENSE-2.0
9937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar *
10937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar * Unless required by applicable law or agreed to in writing, software
11937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar * distributed under the License is distributed on an "AS IS" BASIS,
12937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar * See the License for the specific language governing permissions and
14937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar * limitations under the License.
15937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar */
16e4741f3c41ac76daa649a15764eb3bd4cac3157cAurimas Liutikas
17526389b5eb93f99eaf4dba0b0c75b0b7df9a0f65Aurimas Liutikasimport static androidx.build.dependencies.DependenciesKt.*
18526389b5eb93f99eaf4dba0b0c75b0b7df9a0f65Aurimas Liutikasimport androidx.build.LibraryGroups
19526389b5eb93f99eaf4dba0b0c75b0b7df9a0f65Aurimas Liutikasimport androidx.build.LibraryVersions
20526389b5eb93f99eaf4dba0b0c75b0b7df9a0f65Aurimas Liutikasimport androidx.build.SupportLibraryExtension
21bb85facdec67ba2d8c47fca3e80e6ba480e14fd3Aurimas Liutikas
22f8b708aca586e946adad0bc3022b0c199224c07fAurimas Liutikasplugins {
23f8b708aca586e946adad0bc3022b0c199224c07fAurimas Liutikas    id("SupportAndroidLibraryPlugin")
24f8b708aca586e946adad0bc3022b0c199224c07fAurimas Liutikas}
25937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar
26937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyardependencies {
2762d3e1d861157acde404100bd2e1e1e99b228ef0Aurimas Liutikas    api(SUPPORT_ANNOTATIONS)
28bdc4c86d3dff74f6634a38e2f7b316b0e823a2c8Alan Viverette    api(project(":sqlite:sqlite"))
29937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar}
30937a77cef9380b6e03e9e3177a563ddcc4fd1fb5Yigit Boyar
31bb85facdec67ba2d8c47fca3e80e6ba480e14fd3Aurimas LiutikassupportLibrary {
32ea5ee82cc9a962324db73b19df161724c0c4a96bAurimas Liutikas    name = "Android Support SQLite - Framework Implementation"
33ea5ee82cc9a962324db73b19df161724c0c4a96bAurimas Liutikas    publish = true
3478c1ab769dfe503ffd0b25cb998db80202a1bfcbAurimas Liutikas    mavenVersion = LibraryVersions.ROOM
357f40a7ef7894666df581acf8228e86f00569ab92Aurimas Liutikas    mavenGroup = LibraryGroups.PERSISTENCE
36ea5ee82cc9a962324db73b19df161724c0c4a96bAurimas Liutikas    inceptionYear = "2017"
37ea5ee82cc9a962324db73b19df161724c0c4a96bAurimas Liutikas    description = "The implementation of Support SQLite library using the framework code."
38ea5ee82cc9a962324db73b19df161724c0c4a96bAurimas Liutikas    url = SupportLibraryExtension.ARCHITECTURE_URL
39bb85facdec67ba2d8c47fca3e80e6ba480e14fd3Aurimas Liutikas}