├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── org │ └── buffer │ └── android │ └── biscotti │ ├── BiscottiActions.kt │ ├── BiscottiIntents.kt │ ├── BiscottiMatchers.kt │ ├── BiscottiShortcuts.kt │ └── BiscottiUtil.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | *iml 3 | *.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/org/buffer/android/biscotti/BiscottiActions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/app/src/main/java/org/buffer/android/biscotti/BiscottiActions.kt -------------------------------------------------------------------------------- /app/src/main/java/org/buffer/android/biscotti/BiscottiIntents.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/app/src/main/java/org/buffer/android/biscotti/BiscottiIntents.kt -------------------------------------------------------------------------------- /app/src/main/java/org/buffer/android/biscotti/BiscottiMatchers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/app/src/main/java/org/buffer/android/biscotti/BiscottiMatchers.kt -------------------------------------------------------------------------------- /app/src/main/java/org/buffer/android/biscotti/BiscottiShortcuts.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/app/src/main/java/org/buffer/android/biscotti/BiscottiShortcuts.kt -------------------------------------------------------------------------------- /app/src/main/java/org/buffer/android/biscotti/BiscottiUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/app/src/main/java/org/buffer/android/biscotti/BiscottiUtil.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bufferapp/Biscotti/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------