-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from contentstack/next
Fix for download issue, Status Code, x-user-agent and early-access
- Loading branch information
Showing
22 changed files
with
431 additions
and
501 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,24 @@ | ||
buildscript { | ||
ext.jacoco_version = '0.8.8' | ||
ext { | ||
jacoco_version = '0.8.8' | ||
agp_version = '8.2.1' | ||
} | ||
repositories { | ||
google() | ||
maven { | ||
url = uri("https://storage.googleapis.com/r8-releases/raw") | ||
url "https://plugins.gradle.org/m2/" | ||
} | ||
google() | ||
mavenCentral() | ||
} | ||
|
||
dependencies { | ||
classpath "com.android.tools.build:gradle:7.2.2" //7.0.4 | ||
classpath 'io.github.gradle-nexus:publish-plugin:1.1.0' | ||
//classpath "com.android.tools.build:gradle:8.2.1" //8.2.1 | ||
classpath 'com.android.tools.build:gradle:7.4.2' | ||
classpath 'io.github.gradle-nexus:publish-plugin:2.0.0-rc-1' | ||
classpath "org.jacoco:org.jacoco.core:$jacoco_version" | ||
classpath "com.android.tools:r8:8.1.56" | ||
} | ||
} | ||
|
||
apply plugin: 'io.github.gradle-nexus.publish-plugin' | ||
apply from: "${rootDir}/scripts/publish-root.gradle" | ||
|
||
tasks.register('clean', Delete) { | ||
delete rootProject.buildDir | ||
} |
Oops, something went wrong.