Thank you for using my software! This document is the main privacy policy for Omni Notes Android and desktop applications. I respects your privacy rights and care about protecting your information collected by my apps.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# built application files | |
*.apk | |
*.ap_ | |
*.jar | |
!gradle/wrapper/gradle-wrapper.jar | |
# lint folder | |
lint | |
# files for the dex VM |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
keystore=/path/tp/your/keystore | |
keystore.password=keystorePassword | |
keystore.alias=aliasForApp | |
keystore.alias.password=aliasForAppPassword |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
path=`curl -sL https://github.com/federicoiosue/PSMetadataFetcherJava/releases/latest | egrep -o '/federicoiosue/PSMetadataFetcherJava/releases/download/.+/.*.jar'` | |
fileName=`echo $path | rev | cut -d '/' -f 1 | rev` | |
echo $path | wget --base=http://github.com/ -i - | |
cp $fileName PlayStoreMetadataFetcher.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git push origin develop master --tags | |
git checkout master | |
mvn docker:build docker:push docker:removeImage | |
git checkout develop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git checkout develop | |
for i in $(git branch | grep release); do git branch -D $i; done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git checkout develop | |
git pull | |
mvn jgitflow:release-start -B | |
mvn jgitflow:release-finish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Move into the Android project BEFORE running the following command | |
rm local.properties; docker rm android; docker run -v $PWD:/workspace --name android tabrindle/min-alpine-android-sdk:latest bash -c "yes | sdkmanager --update && yes | sdkmanager --licenses && cd workspace && ./gradlew build --stacktrace -Dorg.gradle.daemon=true -Pandroid.useDeprecatedNdk=true" |
This is the code styling that must be used to contribute to Omni Notes project
Google Java style is used as base
- Hard wrap at 120 chars (instead than 100)
- Single space before method declaration parenthesis
OlderNewer