FloatingActionButton
FloatingActionButton copied to clipboard
Importing is dependent on gradle.properties
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.
Why import as a module? Are you trying to edit the library?
I'm sorry I don't know 😢
I imported it as a module, but then changed those values above to be correct values--and it worked fine.