Hi all, i was wondering if i could get some insight on whether Projects created in Android Studio would have slight differences specifically when using the compileOnly directive in the build.gradle file.
The reason i ask this is because I am wrapping a library for someone for a POS SDK, and i am facing an issue that i had never seen before, i have wrapped many POS libraries before but never came across this issue.
The issue i am facing is that the Printing function doesn't seem to work, everything else works fine, the NFC function, MagneticCardReader, Barcode Scanner etc.. But for some reason the Printer function doesn't seem to work, however i do not get any errors or exceptions, it just simply does not print.
I used the same code (Code provided by the Manufacturer) in an small Android Studio project, compiled and installed the apk into the Device and it works just fine, But for some reason the same code doesn't work in the library wrapper. The only differences I can think of are the gradle settings in Android Studio, specifically the compileOnly under dependencies.
From my understanding the definition of compileOnly is the following:
There is also a line that needs to be added to the Manifest file which is the following:
without this line in the Manifest file the app will crash, when it is added the app compiles and runs but as mentioned above the Printing function doesn't work.
I have tried pretty much everything i can think of but am very puzzled at the fact that the Project with the same code in Android Studio works and the same code in the library wrapper using B4A doesn't.
If anyone has any thoughts or ideas as to why that would be please feel free to comment, i am running out of ideas and need to figure out why this is.
Thanks All,
Walter
The reason i ask this is because I am wrapping a library for someone for a POS SDK, and i am facing an issue that i had never seen before, i have wrapped many POS libraries before but never came across this issue.
The issue i am facing is that the Printing function doesn't seem to work, everything else works fine, the NFC function, MagneticCardReader, Barcode Scanner etc.. But for some reason the Printer function doesn't seem to work, however i do not get any errors or exceptions, it just simply does not print.
I used the same code (Code provided by the Manufacturer) in an small Android Studio project, compiled and installed the apk into the Device and it works just fine, But for some reason the same code doesn't work in the library wrapper. The only differences I can think of are the gradle settings in Android Studio, specifically the compileOnly under dependencies.
From my understanding the definition of compileOnly is the following:
Compile-only dependencies are distinctly different than regular compile dependencies. They are not included on the runtime classpath and they are non-transitive, meaning they are not included in dependent projects. This is true when using Gradle project dependencies and also when publishing to Maven or Ivy repositories. In the latter case, compile-only dependencies are simply omitted from published metadata.
There is also a line that needs to be added to the Manifest file which is the following:
B4X:
<uses-library android:name="com.pos.device"></uses-library>
without this line in the Manifest file the app will crash, when it is added the app compiles and runs but as mentioned above the Printing function doesn't work.
I have tried pretty much everything i can think of but am very puzzled at the fact that the Project with the same code in Android Studio works and the same code in the library wrapper using B4A doesn't.
If anyone has any thoughts or ideas as to why that would be please feel free to comment, i am running out of ideas and need to figure out why this is.
Thanks All,
Walter