android tutorial - Remote binary dependencies in android | Developer android - android app development - android studio - android app developement



You can add remote dependencies in Gradle usign this structure:

compile 'group:name:version'
click below button to copy code from our android learning website - android tutorial - team
compile 'group:name:version'
click below button to copy code from our android learning website - android tutorial - team

compile 'group:name:version' For example

compile group: 'xxx', name: 'xxxxx', version: 'xxxx'
click below button to copy code from our android learning website - android tutorial - team
compile group: 'xxx', name: 'xxxxx', version: 'xxxx'
click below button to copy code from our android learning website - android tutorial - team

The line declares a dependency on version 24.1.0 of the Android Support Library.


Related Searches to Remote binary dependencies in android