Fontify
Fontify copied to clipboard
Using Fontify in an Android Studio Project
Hi Danh, could you provide a simple way to include Fontify using gradle?
Thank you in advice!
Hey @tuxone, I haven't looked into gradle much at all yet. I'd be happy to merge a pull-request, though. Otherwise it might be a while :)
Just put a build.gradle file in the main folder of the library project with the following content:
apply plugin: 'android-library'
android { compileSdkVersion 19 buildToolsVersion '19.0.1'
sourceSets { main { manifest.srcFile 'AndroidManifest.xml' java.srcDirs = ['src'] res.srcDirs = ['res'] } } }
and you can use the library in Android Studio.