group 'dev.yanshouwang.bluetooth_low_energy' version '1.0-SNAPSHOT' buildscript { ext.kotlin_version = '1.5.20' repositories { google() mavenCentral() maven { url 'https://mirrors.cloud.tencent.com/nexus/repository/maven-public/' } } dependencies { classpath 'com.android.tools.build:gradle:4.1.0' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" } } rootProject.allprojects { repositories { google() mavenCentral() maven { url 'https://mirrors.cloud.tencent.com/nexus/repository/maven-public/' } } } apply plugin: 'com.android.library' apply plugin: 'kotlin-android' android { compileSdkVersion 30 sourceSets { main.java.srcDirs += 'src/main/kotlin' } defaultConfig { minSdkVersion 21 } } dependencies { implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" implementation 'com.google.protobuf:protobuf-kotlin:3.17.3' }