You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unzip the source code into the root of your project folder.
Rename the folder from "android-print-sdk-master" to "android-print-sdk"
Insert the following into your settings.gradle file (Located in the root directory of your app source) in your project at the end of the the 'include' line:
':droidprint'
Add the following new line into the same settings.gradle file in your project:
project(':droidprint').projectDir = new File('./DroidPrint/mobileprintsdk')
As a result, it should look something like this:
include ':app', ':droidprint'
project(':droidprint').projectDir = new File('./DroidPrint/mobileprintsdk')
Make sure that './DroidPrint/mobileprintsdk' directory is pointing to the correct location.
You must also include the project in the dependencies section of your build.gradle file (Located in the app directory of your source code):