passkit4j icon indicating copy to clipboard operation
passkit4j copied to clipboard

Java library for generating Apple Passbook (.pkpass) files

Results 12 passkit4j issues
Sort by recently updated
recently updated
newest added

I've implemented the boarding pass with .p12. Is it possible to do so with .p8 as well?

The .pkpass file is generated but I am not able to open it on any device.There are no errors on eclipse console.

Check non-documented feature https://developer.apple.com/videos/play/wwdc2017/714/?time=2899

`KeyStore keystore = KeyStore.getInstance("PKCS12"); keystore.load(p12File, "test".toCharArray()); PassSigner signer = PassSignerImpl.builder().keystore(keystore, "1").intermediateCertificate(new FileInputStream("AppleWWDRCA.cer")).build();` I am using this code to create .pkpass file. But when I deploy to Weblogic, PassSignerImpl.builder(). line gives...

If one simply includes this library and does not handle dependencies probably (which is a pain with bouncycastle in any way) one ends up with outdated libraries :/ So could...

``` Pass pass = new Pass() .teamIdentifier("asdfasdfasdf") .passTypeIdentifier("pass.com.bouldercoffeeco.storeCard") .organizationName("Boulder Coffee Co.") .description("Boulder Coffee Rewards Card") .serialNumber("p69f2J") .locations( new Location(43.145863, -77.602690).relevantText("South Wedge"), new Location(43.131063, -77.636425).relevantText("Brooks Landing"), new Location(43.147528, -77.576051).relevantText("Park Avenue"), new...

Hi Ryan Tenney, Greetings..! I am new to Java development, using your library for generating the pass. Actually i need to disable "Share Pass" option for that added a Json...

We are running a later Jackson version on our application server and this is causing this library to be unusable due to this bug. In the case of Location.altitude (which...

If a NumberField is given the value 0 the exported pass has no "value" field in pass.json for that NumberField and therefore breaks the pass. I use Jackson 2.6.3 beacause...