无法解析Symbol LENGTH_LONG

时间:2017-03-09 08:12:28

标签: android

我是初学者我面临的问题无法解决符号length_long,我使用的是Android工作室2.2.3并且我在网格中更改了我的所有版本,但仍然是同样的问题

CopyMemory

1 个答案:

答案 0 :(得分:0)

更改您的compileSdkVersion,buildToolsVersion,minSdkVersion,targetSdkVersion和依赖项。

    apply plugin: 'com.android.application'

    android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

   defaultConfig {
       applicationId "com.test.app"
       minSdkVersion 16
       targetSdkVersion 23
       versionCode 1
       versionName "1.0"
 }
  buildTypes {
      release {
         minifyEnabled false
         proguardFiles getDefaultProguardFile('proguard-android.txt'),      'proguard-rules.pro'
         }
     }
  }
   dependencies {
   compile fileTree(dir: 'libs', include: ['*.jar'])
     testCompile 'junit:junit:4.12'
     compile 'com.android.support:appcompat-v7:23.1.1'
     compile 'com.android.support:design:23.1.1'
     compile 'com.android.support:support-v4:23.1.1'
   }