Recent content by atliax

  1. A

    Post [APP][Xposed][1.6.5]Snapprefs - The ultimate Snapchat-utility [9.21.1.0] [JB-M]

    When Snapchat releases a new version, they use ProGuard (or at least something similar) to obfuscate the code (basically renaming classes, methods and fields to random names) in order to stop people from reverse engineering the code (and also to optimize it). Sometimes it doesn't change between...
  2. A

    Post [APP][Xposed][1.6.5]Snapprefs - The ultimate Snapchat-utility [9.21.1.0] [JB-M]

    It's not fully compatible, there was a tiny change in the proguard between 9.17.0.0 and 9.17.1.0. (Try saving a sent snap :)) I've already sent a pull request on github :D
  3. A

    Post [APP][Xposed][1.6.5]Snapprefs - The ultimate Snapchat-utility [9.21.1.0] [JB-M]

    No, snapchat flattens the image into a single bitmap before sending it Sent from my GT-I9505 using Tapatalk
  4. A

    Post [APP][Xposed][1.6.5]Snapprefs - The ultimate Snapchat-utility [9.21.1.0] [JB-M]

    I think he meant that 9.16.0.2 is not supported by 1.6.0 :) Sent from my GT-I9505 using Tapatalk
  5. A

    Post [APP][Xposed][1.6.5]Snapprefs - The ultimate Snapchat-utility [9.21.1.0] [JB-M]

    Like has been said many times over the last few pages of the thread, video saving is fixed in the next version :) For those that don't follow snapprefs on snapchat, the next version will also fix the issue with some snaps saving and other snaps not saving.
  6. A

    Post [APP][Xposed][1.6.5]Snapprefs - The ultimate Snapchat-utility [9.21.1.0] [JB-M]

    It allows you to enter a custom speed to use with Snapchat's speed filter (the one that shows speed in km/h or mph overlaying the image/video). You need to enter the speed in meters per second. 1 m/s = 3.6 km/h = 2.2369 mph.
  7. A

    Post [APP][Xposed][1.6.5]Snapprefs - The ultimate Snapchat-utility [9.21.1.0] [JB-M]

    Snapchat doesn't store a separate overlay for pictures like it does for videos.
  8. A

    Post [APP][Xposed][1.6.5]Snapprefs - The ultimate Snapchat-utility [9.21.1.0] [JB-M]

    MaaarZ If you're interested, changing line 143 in Saving.java from mVideo = new FileInputStream(param.args[0].toString()); to mVideo = new FileInputStream(Uri.parse(param.args[0].toString()).getPath()); works for making 1.5.1 save videos for me using Snapchat 9.16.1.0 :) Disclaimer: I am not...