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

Popular posts from this blog

html - Difficulties with background-image property -

visual studio code - What does the isShellCommand property actually do and how should you use it? -

ios - Segue not passing data between ViewControllers -