Issue with com.github.PhilJay:MPAndroidChart library









up vote
0
down vote

favorite












Hi I have a problem with com.github.PhilJay:MPAndroidChart library I want to add to my project when I sync my project everything is ok but when I compile my project it appears this error and I don't know why.



The problem says: More than one file was found with OS independent path 'META-INF/proguard/androidx-annotations.pro'



It supposed that I put everything in the right place



build.gradle (Module app)



 apply plugin: 'com.android.application'

android
compileSdkVersion 28
defaultConfig
applicationId "company.eduardo.administradorfinanzas"
minSdkVersion 21
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
javaCompileOptions
annotationProcessorOptions
arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]



buildTypes
release
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'




repositories
jcenter()
maven url 'https://jitpack.io'


dependencies
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0-alpha'
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:cardview-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
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'


implementation 'com.google.android.gms:play-services-auth:16.0.1'
implementation 'com.github.bumptech.glide:glide:4.8.0'
implementation 'android.arch.persistence.room:runtime:1.1.1'
annotationProcessor 'android.arch.persistence.room:compiler:1.1.1'

// Room components
implementation "android.arch.persistence.room:runtime:$rootProject.roomVersion"
annotationProcessor "android.arch.persistence.room:compiler:$rootProject.roomVersion"
androidTestImplementation "android.arch.persistence.room:testing:$rootProject.roomVersion"

// Lifecycle components
implementation "android.arch.lifecycle:extensions:$rootProject.archLifecycleVersion"
annotationProcessor "android.arch.lifecycle:compiler:$rootProject.archLifecycleVersion"

apply plugin: 'com.google.gms.google-services'


And my build.gradle (Project)



 // 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.2.1'
classpath 'com.google.gms:google-services:4.0.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


ext
roomVersion = '1.1.1'
archLifecycleVersion = '1.1.1'










share|improve this question



























    up vote
    0
    down vote

    favorite












    Hi I have a problem with com.github.PhilJay:MPAndroidChart library I want to add to my project when I sync my project everything is ok but when I compile my project it appears this error and I don't know why.



    The problem says: More than one file was found with OS independent path 'META-INF/proguard/androidx-annotations.pro'



    It supposed that I put everything in the right place



    build.gradle (Module app)



     apply plugin: 'com.android.application'

    android
    compileSdkVersion 28
    defaultConfig
    applicationId "company.eduardo.administradorfinanzas"
    minSdkVersion 21
    targetSdkVersion 28
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    javaCompileOptions
    annotationProcessorOptions
    arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]



    buildTypes
    release
    minifyEnabled false
    proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'




    repositories
    jcenter()
    maven url 'https://jitpack.io'


    dependencies
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0-alpha'
    //noinspection GradleCompatible
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:cardview-v7:28.0.0'
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    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'


    implementation 'com.google.android.gms:play-services-auth:16.0.1'
    implementation 'com.github.bumptech.glide:glide:4.8.0'
    implementation 'android.arch.persistence.room:runtime:1.1.1'
    annotationProcessor 'android.arch.persistence.room:compiler:1.1.1'

    // Room components
    implementation "android.arch.persistence.room:runtime:$rootProject.roomVersion"
    annotationProcessor "android.arch.persistence.room:compiler:$rootProject.roomVersion"
    androidTestImplementation "android.arch.persistence.room:testing:$rootProject.roomVersion"

    // Lifecycle components
    implementation "android.arch.lifecycle:extensions:$rootProject.archLifecycleVersion"
    annotationProcessor "android.arch.lifecycle:compiler:$rootProject.archLifecycleVersion"

    apply plugin: 'com.google.gms.google-services'


    And my build.gradle (Project)



     // 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.2.1'
    classpath 'com.google.gms:google-services:4.0.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


    ext
    roomVersion = '1.1.1'
    archLifecycleVersion = '1.1.1'










    share|improve this question

























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      Hi I have a problem with com.github.PhilJay:MPAndroidChart library I want to add to my project when I sync my project everything is ok but when I compile my project it appears this error and I don't know why.



      The problem says: More than one file was found with OS independent path 'META-INF/proguard/androidx-annotations.pro'



      It supposed that I put everything in the right place



      build.gradle (Module app)



       apply plugin: 'com.android.application'

      android
      compileSdkVersion 28
      defaultConfig
      applicationId "company.eduardo.administradorfinanzas"
      minSdkVersion 21
      targetSdkVersion 28
      versionCode 1
      versionName "1.0"
      testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
      javaCompileOptions
      annotationProcessorOptions
      arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]



      buildTypes
      release
      minifyEnabled false
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'




      repositories
      jcenter()
      maven url 'https://jitpack.io'


      dependencies
      implementation fileTree(dir: 'libs', include: ['*.jar'])
      implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0-alpha'
      //noinspection GradleCompatible
      implementation 'com.android.support:appcompat-v7:28.0.0'
      implementation 'com.android.support:cardview-v7:28.0.0'
      implementation 'com.android.support:design:28.0.0'
      implementation 'com.android.support.constraint:constraint-layout:1.1.3'
      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'


      implementation 'com.google.android.gms:play-services-auth:16.0.1'
      implementation 'com.github.bumptech.glide:glide:4.8.0'
      implementation 'android.arch.persistence.room:runtime:1.1.1'
      annotationProcessor 'android.arch.persistence.room:compiler:1.1.1'

      // Room components
      implementation "android.arch.persistence.room:runtime:$rootProject.roomVersion"
      annotationProcessor "android.arch.persistence.room:compiler:$rootProject.roomVersion"
      androidTestImplementation "android.arch.persistence.room:testing:$rootProject.roomVersion"

      // Lifecycle components
      implementation "android.arch.lifecycle:extensions:$rootProject.archLifecycleVersion"
      annotationProcessor "android.arch.lifecycle:compiler:$rootProject.archLifecycleVersion"

      apply plugin: 'com.google.gms.google-services'


      And my build.gradle (Project)



       // 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.2.1'
      classpath 'com.google.gms:google-services:4.0.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


      ext
      roomVersion = '1.1.1'
      archLifecycleVersion = '1.1.1'










      share|improve this question















      Hi I have a problem with com.github.PhilJay:MPAndroidChart library I want to add to my project when I sync my project everything is ok but when I compile my project it appears this error and I don't know why.



      The problem says: More than one file was found with OS independent path 'META-INF/proguard/androidx-annotations.pro'



      It supposed that I put everything in the right place



      build.gradle (Module app)



       apply plugin: 'com.android.application'

      android
      compileSdkVersion 28
      defaultConfig
      applicationId "company.eduardo.administradorfinanzas"
      minSdkVersion 21
      targetSdkVersion 28
      versionCode 1
      versionName "1.0"
      testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
      javaCompileOptions
      annotationProcessorOptions
      arguments = ["room.schemaLocation": "$projectDir/schemas".toString()]



      buildTypes
      release
      minifyEnabled false
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'




      repositories
      jcenter()
      maven url 'https://jitpack.io'


      dependencies
      implementation fileTree(dir: 'libs', include: ['*.jar'])
      implementation 'com.github.PhilJay:MPAndroidChart:v3.1.0-alpha'
      //noinspection GradleCompatible
      implementation 'com.android.support:appcompat-v7:28.0.0'
      implementation 'com.android.support:cardview-v7:28.0.0'
      implementation 'com.android.support:design:28.0.0'
      implementation 'com.android.support.constraint:constraint-layout:1.1.3'
      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'


      implementation 'com.google.android.gms:play-services-auth:16.0.1'
      implementation 'com.github.bumptech.glide:glide:4.8.0'
      implementation 'android.arch.persistence.room:runtime:1.1.1'
      annotationProcessor 'android.arch.persistence.room:compiler:1.1.1'

      // Room components
      implementation "android.arch.persistence.room:runtime:$rootProject.roomVersion"
      annotationProcessor "android.arch.persistence.room:compiler:$rootProject.roomVersion"
      androidTestImplementation "android.arch.persistence.room:testing:$rootProject.roomVersion"

      // Lifecycle components
      implementation "android.arch.lifecycle:extensions:$rootProject.archLifecycleVersion"
      annotationProcessor "android.arch.lifecycle:compiler:$rootProject.archLifecycleVersion"

      apply plugin: 'com.google.gms.google-services'


      And my build.gradle (Project)



       // 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.2.1'
      classpath 'com.google.gms:google-services:4.0.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


      ext
      roomVersion = '1.1.1'
      archLifecycleVersion = '1.1.1'







      android gradle android-gradle androidx






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 11 at 17:24









      Martin Zeitler

      12.5k33560




      12.5k33560










      asked Nov 11 at 17:08









      Eduardo Noyola

      435




      435






















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          0
          down vote













          either use a stable version:



          dependencies 
          // implementation fileTree(dir: "libs", include: ["*.jar"])
          implementation "com.github.PhilJay:MPAndroidChart:v3.0.2"



          or limit the duplicate androidx-annotations.pro to one entry:



          android 
          packagingOptions
          pickFirst "META-INF/proguard/androidx-annotations.pro"




          also check the libs directory, if not the duplicate entry originates from a *.jar, because file androidx-annotations.pro sounds as if it were a ProGuard consumer rules file, as it is often being provided by a library. and the google-services plugin currently would be at version 4.1.0.






          share|improve this answer






















          • Where shoulld I put the pakingOptions in the build.grade app or build.gradle prokect ?
            – Eduardo Noyola
            Nov 11 at 17:30










          • @EduardoNoyola into the module's build.gradle, into the android configuration there. still think that you may have added duplicate dependencies, because there is no other logical explanation, for the file existing twice (or more than once). there's barely need to add any *.jar files, because the dependencies are being fetched & cached.
            – Martin Zeitler
            Nov 11 at 17:31











          • Still doesn't work :(
            – Eduardo Noyola
            Nov 11 at 18:55










          • It says: C:UsersCarolinaAndroidStudioProjectsAdministradorFinanzasappbuildintermediatestransformsmergeJavaResdebug.jar:The process do not have access to the file because is being use for other process
            – Eduardo Noyola
            Nov 11 at 18:58










          • @EduardoNoyola kill the gradle daemon and delete appbuild. there might be a permission issue, eg. that it cannot remove previously built files from there.
            – Martin Zeitler
            Nov 11 at 19:27











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53251141%2fissue-with-com-github-philjaympandroidchart-library%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          0
          down vote













          either use a stable version:



          dependencies 
          // implementation fileTree(dir: "libs", include: ["*.jar"])
          implementation "com.github.PhilJay:MPAndroidChart:v3.0.2"



          or limit the duplicate androidx-annotations.pro to one entry:



          android 
          packagingOptions
          pickFirst "META-INF/proguard/androidx-annotations.pro"




          also check the libs directory, if not the duplicate entry originates from a *.jar, because file androidx-annotations.pro sounds as if it were a ProGuard consumer rules file, as it is often being provided by a library. and the google-services plugin currently would be at version 4.1.0.






          share|improve this answer






















          • Where shoulld I put the pakingOptions in the build.grade app or build.gradle prokect ?
            – Eduardo Noyola
            Nov 11 at 17:30










          • @EduardoNoyola into the module's build.gradle, into the android configuration there. still think that you may have added duplicate dependencies, because there is no other logical explanation, for the file existing twice (or more than once). there's barely need to add any *.jar files, because the dependencies are being fetched & cached.
            – Martin Zeitler
            Nov 11 at 17:31











          • Still doesn't work :(
            – Eduardo Noyola
            Nov 11 at 18:55










          • It says: C:UsersCarolinaAndroidStudioProjectsAdministradorFinanzasappbuildintermediatestransformsmergeJavaResdebug.jar:The process do not have access to the file because is being use for other process
            – Eduardo Noyola
            Nov 11 at 18:58










          • @EduardoNoyola kill the gradle daemon and delete appbuild. there might be a permission issue, eg. that it cannot remove previously built files from there.
            – Martin Zeitler
            Nov 11 at 19:27















          up vote
          0
          down vote













          either use a stable version:



          dependencies 
          // implementation fileTree(dir: "libs", include: ["*.jar"])
          implementation "com.github.PhilJay:MPAndroidChart:v3.0.2"



          or limit the duplicate androidx-annotations.pro to one entry:



          android 
          packagingOptions
          pickFirst "META-INF/proguard/androidx-annotations.pro"




          also check the libs directory, if not the duplicate entry originates from a *.jar, because file androidx-annotations.pro sounds as if it were a ProGuard consumer rules file, as it is often being provided by a library. and the google-services plugin currently would be at version 4.1.0.






          share|improve this answer






















          • Where shoulld I put the pakingOptions in the build.grade app or build.gradle prokect ?
            – Eduardo Noyola
            Nov 11 at 17:30










          • @EduardoNoyola into the module's build.gradle, into the android configuration there. still think that you may have added duplicate dependencies, because there is no other logical explanation, for the file existing twice (or more than once). there's barely need to add any *.jar files, because the dependencies are being fetched & cached.
            – Martin Zeitler
            Nov 11 at 17:31











          • Still doesn't work :(
            – Eduardo Noyola
            Nov 11 at 18:55










          • It says: C:UsersCarolinaAndroidStudioProjectsAdministradorFinanzasappbuildintermediatestransformsmergeJavaResdebug.jar:The process do not have access to the file because is being use for other process
            – Eduardo Noyola
            Nov 11 at 18:58










          • @EduardoNoyola kill the gradle daemon and delete appbuild. there might be a permission issue, eg. that it cannot remove previously built files from there.
            – Martin Zeitler
            Nov 11 at 19:27













          up vote
          0
          down vote










          up vote
          0
          down vote









          either use a stable version:



          dependencies 
          // implementation fileTree(dir: "libs", include: ["*.jar"])
          implementation "com.github.PhilJay:MPAndroidChart:v3.0.2"



          or limit the duplicate androidx-annotations.pro to one entry:



          android 
          packagingOptions
          pickFirst "META-INF/proguard/androidx-annotations.pro"




          also check the libs directory, if not the duplicate entry originates from a *.jar, because file androidx-annotations.pro sounds as if it were a ProGuard consumer rules file, as it is often being provided by a library. and the google-services plugin currently would be at version 4.1.0.






          share|improve this answer














          either use a stable version:



          dependencies 
          // implementation fileTree(dir: "libs", include: ["*.jar"])
          implementation "com.github.PhilJay:MPAndroidChart:v3.0.2"



          or limit the duplicate androidx-annotations.pro to one entry:



          android 
          packagingOptions
          pickFirst "META-INF/proguard/androidx-annotations.pro"




          also check the libs directory, if not the duplicate entry originates from a *.jar, because file androidx-annotations.pro sounds as if it were a ProGuard consumer rules file, as it is often being provided by a library. and the google-services plugin currently would be at version 4.1.0.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 11 at 17:32

























          answered Nov 11 at 17:14









          Martin Zeitler

          12.5k33560




          12.5k33560











          • Where shoulld I put the pakingOptions in the build.grade app or build.gradle prokect ?
            – Eduardo Noyola
            Nov 11 at 17:30










          • @EduardoNoyola into the module's build.gradle, into the android configuration there. still think that you may have added duplicate dependencies, because there is no other logical explanation, for the file existing twice (or more than once). there's barely need to add any *.jar files, because the dependencies are being fetched & cached.
            – Martin Zeitler
            Nov 11 at 17:31











          • Still doesn't work :(
            – Eduardo Noyola
            Nov 11 at 18:55










          • It says: C:UsersCarolinaAndroidStudioProjectsAdministradorFinanzasappbuildintermediatestransformsmergeJavaResdebug.jar:The process do not have access to the file because is being use for other process
            – Eduardo Noyola
            Nov 11 at 18:58










          • @EduardoNoyola kill the gradle daemon and delete appbuild. there might be a permission issue, eg. that it cannot remove previously built files from there.
            – Martin Zeitler
            Nov 11 at 19:27

















          • Where shoulld I put the pakingOptions in the build.grade app or build.gradle prokect ?
            – Eduardo Noyola
            Nov 11 at 17:30










          • @EduardoNoyola into the module's build.gradle, into the android configuration there. still think that you may have added duplicate dependencies, because there is no other logical explanation, for the file existing twice (or more than once). there's barely need to add any *.jar files, because the dependencies are being fetched & cached.
            – Martin Zeitler
            Nov 11 at 17:31











          • Still doesn't work :(
            – Eduardo Noyola
            Nov 11 at 18:55










          • It says: C:UsersCarolinaAndroidStudioProjectsAdministradorFinanzasappbuildintermediatestransformsmergeJavaResdebug.jar:The process do not have access to the file because is being use for other process
            – Eduardo Noyola
            Nov 11 at 18:58










          • @EduardoNoyola kill the gradle daemon and delete appbuild. there might be a permission issue, eg. that it cannot remove previously built files from there.
            – Martin Zeitler
            Nov 11 at 19:27
















          Where shoulld I put the pakingOptions in the build.grade app or build.gradle prokect ?
          – Eduardo Noyola
          Nov 11 at 17:30




          Where shoulld I put the pakingOptions in the build.grade app or build.gradle prokect ?
          – Eduardo Noyola
          Nov 11 at 17:30












          @EduardoNoyola into the module's build.gradle, into the android configuration there. still think that you may have added duplicate dependencies, because there is no other logical explanation, for the file existing twice (or more than once). there's barely need to add any *.jar files, because the dependencies are being fetched & cached.
          – Martin Zeitler
          Nov 11 at 17:31





          @EduardoNoyola into the module's build.gradle, into the android configuration there. still think that you may have added duplicate dependencies, because there is no other logical explanation, for the file existing twice (or more than once). there's barely need to add any *.jar files, because the dependencies are being fetched & cached.
          – Martin Zeitler
          Nov 11 at 17:31













          Still doesn't work :(
          – Eduardo Noyola
          Nov 11 at 18:55




          Still doesn't work :(
          – Eduardo Noyola
          Nov 11 at 18:55












          It says: C:UsersCarolinaAndroidStudioProjectsAdministradorFinanzasappbuildintermediatestransformsmergeJavaResdebug.jar:The process do not have access to the file because is being use for other process
          – Eduardo Noyola
          Nov 11 at 18:58




          It says: C:UsersCarolinaAndroidStudioProjectsAdministradorFinanzasappbuildintermediatestransformsmergeJavaResdebug.jar:The process do not have access to the file because is being use for other process
          – Eduardo Noyola
          Nov 11 at 18:58












          @EduardoNoyola kill the gradle daemon and delete appbuild. there might be a permission issue, eg. that it cannot remove previously built files from there.
          – Martin Zeitler
          Nov 11 at 19:27





          @EduardoNoyola kill the gradle daemon and delete appbuild. there might be a permission issue, eg. that it cannot remove previously built files from there.
          – Martin Zeitler
          Nov 11 at 19:27


















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53251141%2fissue-with-com-github-philjaympandroidchart-library%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Barbados

          How to read a connectionString WITH PROVIDER in .NET Core?

          Node.js Script on GitHub Pages or Amazon S3