Skip to content

Reduce library size #146

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Feb 18, 2019
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
c6250d5
Add filesystem navigation (seen from the app perspective)
Mar 28, 2018
bd17b3f
Merge pull request #110 from a-d-j-i/master
amitshekhariitbhu Mar 28, 2018
f0fdc60
Changed compile to implementation in the .gradle files
May 15, 2018
3077e72
Add support for database delete
Jul 2, 2018
ca64294
Merge pull request #111 from RubenGM/implementationChange
amitshekhariitbhu Jan 18, 2019
e5dd4bf
Merge pull request #123 from peanutwolf/feature_db_delete
amitshekhariitbhu Jan 18, 2019
afe18e8
Update build tool version
amitshekhariitbhu Jan 18, 2019
809369f
Update 2016-2019
amitshekhariitbhu Jan 19, 2019
56bd605
Update .gitignore
friederbluemle Nov 18, 2018
f259b6e
Update Gradle plugin and wrapper
friederbluemle Nov 18, 2018
844ba6b
Update README and fix whitespace errors
friederbluemle Nov 18, 2018
3e3df37
Update maven and bintray plugins
friederbluemle Nov 18, 2018
664ec4a
Update test plugins
friederbluemle Nov 18, 2018
7789f60
Update android-database-sqlcipher to 3.5.9
friederbluemle Nov 18, 2018
1655b27
Merge pull request #139 from friederbluemle/update-project
amitshekhariitbhu Jan 19, 2019
2347b1a
Revert Add filesystem navigation
amitshekhariitbhu Jan 19, 2019
d09e97c
Add place in contact
amitshekhariitbhu Jan 19, 2019
e6afc01
Create debug-db-base
amitshekhariitbhu Jan 19, 2019
d493d77
Create debug-db-encrypt
amitshekhariitbhu Jan 19, 2019
bf7e998
Add dbFactory
amitshekhariitbhu Jan 19, 2019
9b8b504
Remove support lib
amitshekhariitbhu Jan 19, 2019
7f0204e
Add upload gradle for all
amitshekhariitbhu Jan 19, 2019
43beb2e
Bump version to 1.0.5
amitshekhariitbhu Feb 14, 2019
f091d61
Create sample-app for encrypt
amitshekhariitbhu Feb 15, 2019
f76b95a
Create sample-app for encrypt
amitshekhariitbhu Feb 15, 2019
92de6c4
Update gradle
amitshekhariitbhu Feb 16, 2019
c08ba25
Add FailOnError False for Javadoc
amitshekhariitbhu Feb 16, 2019
3d3a232
Add info for encrypt
amitshekhariitbhu Feb 18, 2019
6b4db14
Update CHANGELOG.md
amitshekhariitbhu Feb 18, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add place in contact
  • Loading branch information
amitshekhariitbhu committed Jan 19, 2019
commit d09e97c8914bc232f3210d3ae400b6daf08340fb
2 changes: 1 addition & 1 deletion app/src/main/java/com/sample/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ protected void onCreate(Bundle savedInstanceState) {
String email = "email_" + i;
String street = "street_" + i;
String place = "place_" + i;
contactDBHelper.insertContact(name, phone, email, street, null);
contactDBHelper.insertContact(name, phone, email, street, place);
}
}

Expand Down