PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Wednesday, June 29, 2022

[FIXED] When i update gradle SDK's, popup the error is Recieved status code 403 from server-Forbidden

 June 29, 2022     android, android-gradle-plugin, facebook, facebook-audience-network, facebook-sdk-4.0     No comments   

Issue

I am using Facebook audience network latest SDK implementation 'com.facebook.android:audience-network-sdk:4.32.0' and gradle version is com.android.tools.build:gradle:3.1.1, but I get an error

Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.facebook.android:audience-network-sdk:4.32.0.

Could not resolve com.facebook.android:audience-network-sdk:4.32.0.
Required by:
project :app
Could not resolve com.facebook.android:audience-network-sdk:4.32.0.
Could not get resource 'https://s3.amazonaws.com/moat-sdk-builds/com/facebook/android/audience-network-sdk/4.32.0/audience-network-sdk-4.32.0.pom'.
Could not GET 'https://s3.amazonaws.com/moat-sdk-builds/com/facebook/android/audience-network-sdk/4.32.0/audience-network-sdk-4.32.0.pom'. Received status code 403 from server: Forbidden

How to solve this? Please give me a solution .. thanks in advance


Solution

The version 4.32.0 does not exist at the moment.

Try with 4.+ in order to let gradle pick up the latest version.

dependencies {
    implementation 'com.facebook.android:audience-network-sdk:4.28.1'
}

Then you will be able to use this library.

PS: audiance-network-sdk is also using some google libraries which require the repository jcenter()



Answered By - xiaomi
Answer Checked By - Timothy Miller (PHPFixing Admin)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing