FloatingActionButton icon indicating copy to clipboard operation
FloatingActionButton copied to clipboard

Importing is dependent on gradle.properties

Open Nxt3 opened this issue 10 years ago • 3 comments

With your lines here:

android {
    compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION)
    buildToolsVersion project.ANDROID_BUILD_TOOLS_VERSION

    defaultConfig {
        minSdkVersion Integer.parseInt(project.ANDROID_BUILD_MIN_SDK_VERSION)
        targetSdkVersion Integer.parseInt(project.ANDROID_BUILD_TARGET_SDK_VERSION)
        versionName project.VERSION_NAME
        versionCode Integer.parseInt(project.VERSION_CODE)
    }

   buildTypes {
        release {
            minifyEnabled false
        }
   }
}

you can't import it using "Import Module". This is due to a lack of the gradle.properties file being created.

Nxt3 avatar May 11 '15 19:05 Nxt3

Why import as a module? Are you trying to edit the library?

jaredsburrows avatar May 25 '15 00:05 jaredsburrows

I'm sorry I don't know 😢

zoomonarak avatar May 27 '15 00:05 zoomonarak

I imported it as a module, but then changed those values above to be correct values--and it worked fine.

Nxt3 avatar May 29 '15 18:05 Nxt3