Skip to content

Commit

Permalink
Fixing error: No build artifacts found
Browse files Browse the repository at this point in the history
  • Loading branch information
aziztek committed May 4, 2023
1 parent a1c31fc commit 257b36e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildscript {
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.2"
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.10'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'

// NOTE: Do not place your application dependencies here; they belong
Expand Down
16 changes: 15 additions & 1 deletion huaweiadsadapter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ plugins {
id 'com.android.library'
id 'kotlin-android'
id 'com.github.dcendents.android-maven'
id 'maven-publish'
}

android {
Expand Down Expand Up @@ -42,8 +43,21 @@ dependencies {

implementation 'com.ironsource.sdk:mediationsdk:7.2.1'
implementation 'com.huawei.hms:ads:3.4.51.300'
implementation "androidx.core:core-ktx:+"
implementation "androidx.core:core-ktx:1.9.0"
}
repositories {
mavenCentral()
}
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release

groupId = 'com.github.Explore-In-HMS'
artifactId = 'huawei.ads.ironsource_mediation'
version = '1.1.0'
}
}
}
}

0 comments on commit 257b36e

Please sign in to comment.