Skip to content Skip to sidebar Skip to footer

How To Access .java Files From A Directory Outside Of A Package In Android-studio?

I try to solve this problem for hours now and didn't find a solution on the internet. my project looks like this: I want to access the files in the marked directory in the de.Maye

Solution 1:

In this case you should create a library module for your webuntisaccessor code instead of putting this in the libs folder.

root
  settings.gradle
  app
    build.gradle
  webuntisaccessor
    srcmain    
        java
    build.gradle

In settings.gradle:

include':webuntisaccessor' , ':app'

In webuntisaccessor/build.gradle

apply plugin: 'com.android.library'

In app/build.gradle add:

dependencies {
    compile project(':webuntisaccessor')
}

Post a Comment for "How To Access .java Files From A Directory Outside Of A Package In Android-studio?"