API密钥配置android

Kha*_*nea 1 java api android themoviedb-api

在我的应用程序中,我将使用电影 DB API 来获取最受欢迎的电影海报。

请您帮助解决以下问题:

每次我尝试运行我的应用程序时都会收到这些错误

错误:(14, 77) 错误:预期

错误:(14, 53) 错误: ';' 预期的

错误:(14, 45) 错误:浮点文字格式错误

apply plugin: 'com.android.application'


  android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
    applicationId "com.almaneakhaled.popularmoviesapp2"
    minSdkVersion 15
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }

    buildTypes.each {
        it.buildConfigField 'String', 'THE_MOVIE_DB', '967888xxxxxxxxx'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:support-v4:23.2.1'
 }
Run Code Online (Sandbox Code Playgroud)

这是我在 buildconfig.java 中收到错误的地方:

此处顶部有一行内容为“生成文件夹下的文件已生成,不应编辑”

 package com.almaneakhaled.popularmoviesapp2;

 public final class BuildConfig {
 public static final boolean DEBUG = Boolean.parseBoolean("true");
 public static final String APPLICATION_ID =      "com.almaneakhaled.popularmoviesapp2";
  public static final String BUILD_TYPE = "debug";
  public static final String FLAVOR = "";
 public static final int VERSION_CODE = 1;
  public static final String VERSION_NAME = "1.0";
  // Fields from build type: debug
  public static final String THE_MOVIE_DB = 967888xxxxxxxxx;// this line is causing the issue
}
Run Code Online (Sandbox Code Playgroud)

小智 6

你应该使用反斜杠,改变

it.buildConfigField 'String', 'THE_MOVIE_DB', '967888xxxxxxxxx'
Run Code Online (Sandbox Code Playgroud)

it.buildConfigField 'String', 'THE_MOVIE_DB', "\"967888xxxxxxxxx\""
Run Code Online (Sandbox Code Playgroud)