无法获取资源"https://dl.google.com/dl/android/maven2/com/android/support/support-fragment/28.0.0/support-fragment-28.0.0.aar" [英] Could not get resource 'https://dl.google.com/dl/android/maven2/com/android/support/support-fragment/28.0.0/support-fragment-28.0.0.aar'

查看:376
本文介绍了无法获取资源"https://dl.google.com/dl/android/maven2/com/android/support/support-fragment/28.0.0/support-fragment-28.0.0.aar"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想构建一个基于片段的简单应用程序,但无法加载lib.

I want to build a simple fragment based App, but I can't load the lib.

无法获取资源'我尝试过的事情:

  1. 更新代理设置
  2. 删除代理
  3. 设置检查
  4. 检查连接
  5. 添加:

   // Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        google()
        jcenter()

    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.1'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        google()
        jcenter()
         maven {
             url 'https://maven.google.com'
        }

    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

Gradle.Properties


apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    defaultConfig {
        applicationId "com.example.fragmentmanagementmainactivity"
        minSdkVersion 23
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:2.0.0-beta1'
    testImplementation 'junit:junit:4.13-beta-3'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.android.support:support-v13:28.0.0'
    implementation 'com.android.support:support-fragment:28.0.0'
}

所有操作均以'com.android.support:support-v4:28.0.0'的实现开始 没用

All started with implementation of 'com.android.support:support-v4:28.0.0' which wasn't working

推荐答案

  1. 您正在(app)build.gradle中导入错误的依赖项,或者
  2. 您的设备/网络上存在一些DNS问题.
  3. 您也许也可以尝试此操作; 将此添加到应用程序build.gradle
  1. You're either importing a wrong dependency in your (app) build.gradle, or
  2. You've got some DNS problems on your device/network.
  3. You might be able to try this too; Add this to the app build.gradle

repositories {
        maven { url "https://maven.google.com" }
    }

我希望这是其中之一,因为它们很容易解决.让我知道是否解决了.

I hope it's either of these because they're easy to solve. Let me know if it got solved.

添加3

这篇关于无法获取资源"https://dl.google.com/dl/android/maven2/com/android/support/support-fragment/28.0.0/support-fragment-28.0.0.aar"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆