Импортированный модуль, теперь у меня проблемы с синхронизацией проекта Gradle - PullRequest
0 голосов
/ 16 апреля 2019

Импортирован модуль Blurry в проект, теперь у меня проблема с Gradle Sync. Модуль: https://github.com/wasabeef/Blurry

Ошибка: не удалось получить неизвестное свойство 'COMPILE_SDK_VERSION' для объекта типа com.android.build.gradle.LibraryExtension.

размыто / build.gradle:

android {
  compileSdkVersion COMPILE_SDK_VERSION as int

  defaultConfig {
    minSdkVersion MIN_SDK_VERSION as int
    targetSdkVersion TARGET_SDK_VERSION as int
  }
}

Я пробовал вручную вводить версии:

android {
  compileSdkVersion 28

  defaultConfig {
    minSdkVersion 15
    targetSdkVersion 28
  }
}

это не сработало

размыто / build.gradle:

apply plugin: 'com.android.library'

android {
  compileSdkVersion COMPILE_SDK_VERSION as int

  defaultConfig {
    minSdkVersion MIN_SDK_VERSION as int
    targetSdkVersion TARGET_SDK_VERSION as int
  }
}

ext {
  bintrayRepo = 'maven'
  bintrayName = 'blurry'
  bintrayUserOrg = 'wasabeef'
  publishedGroupId = 'jp.wasabeef'
  libraryName = 'blurry'
  artifact = 'blurry'
  libraryDescription = 'Easy blur for Android'
  siteUrl = 'https://github.com/wasabeef/Blurry'
  gitUrl = 'https://github.com/wasabeef/Blurry.git'
  issueUrl = 'https://github.com/wasabeef/Blurry/issues'
  libraryVersion = VERSION_NAME
  developerId = 'wasabeef'
  developerName = 'Wasabeef'
  developerEmail = 'dadadada.chop@gmail.com'
  licenseName = 'The Apache Software License, Version 2.0'
  licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
  allLicenses = ["Apache-2.0"]
}

apply from: 'https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/bintray-v1.gradle'
apply from: 'https://gist.githubusercontent.com/wasabeef/cf14805bee509baf7461974582f17d26/raw/install-v1.gradle'

Что мне нужно сделать, чтобы приложение работало?

...