android - setting URL in build.gradle? -
i trying install adobe creative cloud sdk in app. , according developer docs, say, set sdk location in way.
allprojects { repositories { mavencentral() jcenter() maven { url "${project.rootdir}/mvn-repo/release" //add correct location of creativesdk library files } }
}
now , doubt , right sdk
in system located in ,
d:\apps\futurister\futurister\app\creativesdk-repo
now, how add correct location of creative sdk in gradle file? thanks,
using android studio, add repositories in local, set link manually direct link:
maven { url "d:/apps/futurister/futurister/app/creativesdk-repo/release" }
or use $
function directory, ex:
maven { url "${system.env.home}/creativesdk-repo/release" }.
Comments
Post a Comment