Skip to content

Commit

Permalink
gradle fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pazlavi committed Nov 16, 2020
1 parent b245d6e commit 5c9c48e
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .idea/jarRepositories.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Prefy/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
plugins {
id 'com.android.library'
}
apply plugin: 'com.github.dcendents.android-maven'
group='com.github.paz-lavi'

android {
compileSdkVersion 30
Expand Down
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ buildscript {
repositories {
google()
jcenter()
mavenCentral()

}
dependencies {
classpath "com.android.tools.build:gradle:4.1.1"
Expand All @@ -11,11 +13,17 @@ buildscript {
// in the individual module build.gradle files
}
}
buildscript {
dependencies {
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' // Add this line
}}

allprojects {
repositories {
google()
jcenter()
mavenCentral()

}
}

Expand Down

0 comments on commit 5c9c48e

Please sign in to comment.