Skip to content

Commit be8f320

Browse files
committed
Changes to build gradle
1 parent 44f4949 commit be8f320

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,5 @@ dependencies {
3535
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
3636
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
3737
implementation project(":iosalert")
38+
//implementation 'com.github.Maliotis:iOSAlertForAndroid:0.1.0'
3839
}

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
dependencies {
1111
classpath 'com.android.tools.build:gradle:3.6.3'
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
13-
13+
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1' // Add this line
1414
// NOTE: Do not place your application dependencies here; they belong
1515
// in the individual module build.gradle files
1616
}
@@ -20,7 +20,7 @@ allprojects {
2020
repositories {
2121
google()
2222
jcenter()
23-
23+
maven { url 'https://jitpack.io' }
2424
}
2525
}
2626

iosalert/build.gradle

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
apply plugin: 'com.android.library'
22
apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-android-extensions'
4+
apply plugin: 'com.github.dcendents.android-maven'
5+
6+
group='com.github.Maliotis'
47

58
android {
69
compileSdkVersion 29

0 commit comments

Comments
 (0)