-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update gradle update gradle * revert back spotless code revert back spotless code * Update jacocoVersion bak to 0.8.7 Update jacocoVersion bak to 0.8.7 * update gitignore update gitignore * update makefile to show logs update makefile to show logs * Update javadoc command in gradle Update javadoc command in gradle * add doc debugging to makefile add doc debugging to makefile * update spotless version update spotless version * update build.gradle for doc update build.gradle for doc * update gradle files update gradle files * try set to gradle 7.4 try set to gradle 7.4 * update gradle to a lower version update gradle to a lower version * Revert "update gradle to a lower version" This reverts commit 87af7e8. * Remove linksOffline for javadoc Remove linksOffline for javadoc * revert make file revert make file * Update Gradle files Update Gradle files * Update makefile for debugging Update makefile for debugging * update make file to print debug log update make file to print debug log * update build gradle update build gradle * update build gradle update build gradle * update gradle update gradle * update build gradle update build gradle * Change build gradle Change build gradle * Update build gradle Update build gradle * revert back make file revert back make file * revert files revert files * Update javadoc build.gradle Update javadoc build.gradle * Add back the test scrDirs Add back the test scrDirs * remove the debug log in make file for javadoc remove the debug log in make file for javadoc * update code coverage output page update code coverage output page * Delete local.properties * Update test context for internalJavaDoc Update test context for internalJavaDoc * update gradle file for tests update gradle file for tests * Update with review comments Update with review comments * Remove ADB class from excludeRegex and update from review comments Remove ADB class from excludeRegex and update from review comments * Add To Do note for removing jetifier Add To Do note for removing jetifier
- Loading branch information
Showing
11 changed files
with
112 additions
and
125 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,33 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
buildscript { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
maven { url "https://plugins.gradle.org/m2/" } | ||
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } | ||
} | ||
dependencies { | ||
classpath "com.android.tools.build:gradle:4.0.1" | ||
classpath "com.diffplug.spotless:spotless-plugin-gradle:5.12.5" | ||
// NOTE: Do not place your application dependencies here; they belong | ||
// in the individual module build.gradle files | ||
} | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
google() | ||
mavenCentral() | ||
maven { url "https://plugins.gradle.org/m2/" } | ||
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } | ||
} | ||
|
||
apply plugin: 'maven-publish' | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
plugins { | ||
// Android Gradle Plugin version | ||
id 'com.android.application' version '7.3.0' apply false | ||
id 'com.android.library' version '7.3.0' apply false | ||
id 'com.diffplug.gradle.spotless' version '6.11.0' apply false | ||
} | ||
|
||
ext { | ||
// android config | ||
minSdkVersion = 19 | ||
targetSdkVersion = 29 | ||
compileSdkVersion = 29 | ||
targetSdkVersion = 33 | ||
compileSdkVersion = 33 | ||
versionCode = 1 | ||
|
||
// java config | ||
sourceCompatibility = JavaVersion.VERSION_1_7 | ||
targetCompatibility = JavaVersion.VERSION_1_7 | ||
sourceCompatibility = JavaVersion.VERSION_1_8 | ||
targetCompatibility = JavaVersion.VERSION_1_8 | ||
|
||
// dependencies | ||
junitVersion = "1.1.2" | ||
junitVersion = "1.1.3" | ||
mockitoCoreVersion = "2.28.2" | ||
buildToolsVersion = "29.0.3" | ||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" | ||
jacocoVersion = "0.8.7" | ||
jacocoVersion = "0.8.8" | ||
|
||
// spotless config | ||
prettierVersion = "2.3.0" | ||
prettierPluginJavaVersion = "1.1.0" | ||
prettierVersion = "2.7.1" | ||
prettierPluginJavaVersion = "1.6.2" | ||
} | ||
|
||
task clean(type: Delete) { | ||
delete rootProject.buildDir | ||
} |
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,3 +1,2 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.adobe.marketing.mobile.edge.consent"> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> | ||
</manifest> |
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,6 +1,6 @@ | ||
#Mon Jan 25 11:55:49 PST 2021 | ||
#Wed Nov 02 00:19:36 PDT 2022 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip | ||
zipStoreBase=GRADLE_USER_HOME |
Oops, something went wrong.