gradle 文件中的依赖项问题

Issue with dependencies in gradle file

提问人:krishna 提问时间:1/11/2019 最后编辑:krishna 更新时间:1/12/2019 访问量:294

问:

我是android的新手,想在android studio中创建一个基本的地图应用程序。

模拟器正在加载地图,但它是灰色的,左下角只有谷歌标志。

指向模拟器图像的链接已 https://i.stack.imgur.com/QJZwc.jpg

build.gradle 文件在下一行显示红色下划线。

链接到 gradle 文件 https://i.stack.imgur.com/UhH7Q.jpg

在谷歌上搜索了 Grayed out 问题后,我发现 build.gradle 文件中存在一些问题。

因此,我在 stackoverflow 上检查了各种解决方案,并在 build.gradle 文件中添加了三行(现在注释)。

由于堆栈溢出上给出的解决方案都没有解决问题,因此将其作为新问题发布。

Android Studio 版本:3.2.1

顶级构建文件,您可以在其中添加所有子项目/模块通用的配置选项。

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'


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

allprojects {
    repositories {
        google()
        jcenter()
    }
}

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

模块:app

apply plugin: 'com.android.application'

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

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:28.0.0'
  //  implementation 'com.android.support:design:28.0.0'
  //  implementation 'com.android.support:support-media-compat:28.0.0'
   // implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.google.android.gms:play-services-maps:16.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso- 
core:3.0.2'

}

MainActivity.java

import android.support.v4.app.FragmentActivity;
import android.os.Bundle;

import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;

public class MapsActivity extends FragmentActivity implements 
OnMapReadyCallback {

    private GoogleMap mMap;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_maps);
        // Obtain the SupportMapFragment and get notified when the map is 
ready to be used.
        SupportMapFragment mapFragment = (SupportMapFragment) 
getSupportFragmentManager()
                .findFragmentById(R.id.map);
        mapFragment.getMapAsync(this);
    }


    @Override
    public void onMapReady(GoogleMap googleMap) {
        mMap = googleMap;

        // Add a marker in Sydney and move the camera
        LatLng sydney = new LatLng(-34, 151);
        mMap.addMarker(new MarkerOptions().position(sydney).title("Marker 
in Sydney"));
        mMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
 Toast.makeText(this, "Welcome to Maps", Toast.LENGTH_LONG).show();
    }
}

希望看到 Emulator 上显示的地图中标记的悉尼。 PS:我可以看到 Toast 欢迎来到地图,但地图是灰色的

安卓 android-studio build.gradle android-studio-3.0

评论


答: 暂无答案