1/* 2 * Copyright (C) 2020 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17import androidx.build.SdkHelperKt 18 19plugins { 20 id("AndroidXPlugin") 21 id("AndroidXRepackagePlugin") 22 id("java-library") 23 id("com.google.protobuf") 24} 25 26repackage { 27 // Must match what is in frameworks/support/appsearch/appsearch-external-protobuf/build.gradle 28 addRelocation { 29 sourcePackage = "com.google.protobuf" 30 targetPackage = "com.google.android.icing.protobuf" 31 } 32} 33 34sourceSets { 35 main { 36 java.srcDir 'java/src/' 37 proto.srcDir 'proto/' 38 } 39} 40 41dependencies { 42 compileOnly("androidx.annotation:annotation:1.1.0") 43 compileOnly(SdkHelperKt.getSdkDependency(project)) 44 compileOnly(libs.protobufLite) 45} 46 47afterEvaluate { 48 lint { 49 lintOptions { 50 // protobuf generates unannotated methods 51 disable("UnknownNullness") 52 } 53 } 54} 55 56androidx { 57 mavenVersion = LibraryVersions.APPSEARCH 58} 59