Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Android SDK to 3.3.0; use maven central instead of jitpack #2

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,20 @@ repositories {
// Android JSC is installed from npm
url "$rootDir/../node_modules/jsc-android/dist"

// Approov SDK installed via jitpack
url "https://jitpack.io"
// Obsolete: Approov SDK installed via jitpack
// We use mavenCentral() instead
//url "https://jitpack.io"
}
google()
jcenter()

mavenCentral()
}

dependencies {
//noinspection GradleDynamicVersion
implementation fileTree(dir: "libs", include: ["*.aar"])
implementation 'com.facebook.react:react-native:+'
implementation 'com.github.approov:approov-android-sdk:3.2.0'
implementation 'io.approov:approov-android-sdk:3.3.0'
if (findProject(':rn-fetch-blob') != null) {
implementation project(path: ':rn-fetch-blob') // From node_modules
} else {
Expand Down