Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: vinhxtrinh/aws-mobile-android-notes-tutorial
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: amazon-archives/aws-mobile-android-notes-tutorial
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 13 commits
  • 74 files changed
  • 5 contributors

Commits on Jan 25, 2018

  1. Adding template

    hyandell committed Jan 25, 2018
    Copy the full SHA
    ac3f07c View commit details
  2. Adding CONTRIBUTING/CoC

    hyandell committed Jan 25, 2018
    Copy the full SHA
    a343a8f View commit details

Commits on Feb 6, 2018

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6fa8b21 View commit details
  2. Remove extra files (amazon-archives#13)

    * Removed VCS Root
    
    * Removed IML References
    adrianhall authored Feb 6, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6624940 View commit details

Commits on Aug 3, 2018

  1. Copy the full SHA
    b9fed23 View commit details
  2. Fixed note disappearing bug

    Adrian Hall committed Aug 3, 2018
    Copy the full SHA
    3cf5eaf View commit details
  3. Added explicit injection initialization with context

    Adrian Hall committed Aug 3, 2018
    Copy the full SHA
    2baa556 View commit details

Commits on Aug 15, 2018

  1. Enabled Java8 support

    Adrian Hall committed Aug 15, 2018
    Copy the full SHA
    e60ee24 View commit details

Commits on Aug 16, 2018

  1. Implement server-generated IDs

    Adrian Hall committed Aug 16, 2018
    Copy the full SHA
    12d3393 View commit details
  2. Fixed observability of fields to debounce on create

    Adrian Hall committed Aug 16, 2018
    Copy the full SHA
    e457780 View commit details

Commits on Oct 11, 2018

  1. Add tutorial (amazon-archives#15)

    * Added tutorial conversion
    adrianhall authored Oct 11, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    eebfd38 View commit details

Commits on Mar 11, 2019

  1. Update analytics.md

    rockarts authored Mar 11, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    85e2a23 View commit details
  2. Merge pull request amazon-archives#17 from rockarts/patch-1

    Update analytics.md
    Karthikeyan authored Mar 11, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    59c5b10 View commit details
Showing with 3,209 additions and 2,029 deletions.
  1. +6 −0 .github/PULL_REQUEST_TEMPLATE.md
  2. +2 −1 .gitignore
  3. BIN .idea/caches/build_file_checksums.ser
  4. +29 −0 .idea/codeStyles/Project.xml
  5. +0 −22 .idea/compiler.xml
  6. +0 −3 .idea/copyright/profiles_settings.xml
  7. +78 −0 .idea/markdown-navigator.xml
  8. +3 −0 .idea/markdown-navigator/profiles_settings.xml
  9. +5 −7 .idea/misc.xml
  10. +4 −0 CODE_OF_CONDUCT.md
  11. +61 −0 CONTRIBUTING.md
  12. +14 −201 LICENSE
  13. +0 −177 LICENSE.txt
  14. +192 −2 NOTICE.txt
  15. +8 −2 README.md
  16. +44 −25 app/build.gradle
  17. +31 −12 app/src/main/AndroidManifest.xml
  18. +0 −77 app/src/main/java/com/amazonaws/mobile/samples/mynotes/Application.java
  19. +0 −56 app/src/main/java/com/amazonaws/mobile/samples/mynotes/ApplicationCrashHandler.java
  20. +60 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/Injection.java
  21. +0 −68 app/src/main/java/com/amazonaws/mobile/samples/mynotes/NoteDetailActivity.java
  22. +0 −182 app/src/main/java/com/amazonaws/mobile/samples/mynotes/NoteDetailFragment.java
  23. +0 −323 app/src/main/java/com/amazonaws/mobile/samples/mynotes/NoteListActivity.java
  24. +38 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/NotesApp.java
  25. +0 −54 app/src/main/java/com/amazonaws/mobile/samples/mynotes/data/DatabaseHelper.java
  26. +0 −222 app/src/main/java/com/amazonaws/mobile/samples/mynotes/data/Note.java
  27. +0 −88 app/src/main/java/com/amazonaws/mobile/samples/mynotes/data/NoteViewHolder.java
  28. +0 −147 app/src/main/java/com/amazonaws/mobile/samples/mynotes/data/NotesContentContract.java
  29. +0 −257 app/src/main/java/com/amazonaws/mobile/samples/mynotes/data/NotesContentProvider.java
  30. +70 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/models/Note.java
  31. +5 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/models/OnClickCallback.java
  32. +44 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/models/PagedListConnectionResponse.java
  33. +5 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/models/RemoveCallback.java
  34. +5 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/models/ResultCallback.java
  35. +119 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/repository/NotesDataSource.java
  36. +52 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/repository/NotesDataSourceFactory.java
  37. +72 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/repository/NotesRepository.java
  38. +40 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/services/AnalyticsService.java
  39. +70 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/services/DataService.java
  40. +58 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/services/mock/MockAnalyticsService.java
  41. +156 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/services/mock/MockDataService.java
  42. +76 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/ui/NoteDetailActivity.java
  43. +97 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/ui/NoteDetailFragment.java
  44. +118 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/ui/NoteListActivity.java
  45. +70 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/ui/NoteListAdapter.java
  46. +48 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/ui/NoteListViewHolder.java
  47. +81 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/ui/SwipeToDelete.java
  48. +73 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/viewmodels/NoteDetailViewModel.java
  49. +47 −0 app/src/main/java/com/amazonaws/mobile/samples/mynotes/viewmodels/NoteListViewModel.java
  50. +34 −0 app/src/main/res/drawable-v24/ic_launcher_foreground.xml
  51. +0 −9 app/src/main/res/drawable/ic_add_black_24dp.xml
  52. +170 −0 app/src/main/res/drawable/ic_launcher_background.xml
  53. +2 −3 app/src/main/res/layout-w900dp/note_list.xml
  54. +15 −11 app/src/main/res/layout/activity_note_detail.xml
  55. +18 −13 app/src/main/res/layout/activity_note_list.xml
  56. +18 −16 app/src/main/res/layout/note_detail.xml
  57. +16 −13 app/src/main/res/layout/note_list.xml
  58. +20 −16 app/src/main/res/layout/note_list_content.xml
  59. +14 −0 app/src/main/res/values/colors.xml
  60. +14 −0 app/src/main/res/values/dimens.xml
  61. +23 −1 app/src/main/res/values/strings.xml
  62. +16 −8 app/src/main/res/values/styles.xml
  63. +16 −11 build.gradle
  64. +2 −2 gradle/wrapper/gradle-wrapper.properties
  65. +252 −0 tutorial/analytics.md
  66. +185 −0 tutorial/auth.md
  67. +444 −0 tutorial/data.md
  68. +69 −0 tutorial/index.md
  69. BIN tutorial/open-project.png
  70. BIN tutorial/pinpoint-addnote.png
  71. BIN tutorial/pinpoint-demographics.png
  72. BIN tutorial/pinpoint-overview.png
  73. BIN tutorial/tutorial-notes-app-anim.gif
  74. BIN tutorial/tutorial-notes-authentication-anim.gif
6 changes: 6 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*Issue #, if available:*

*Description of changes:*


By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
*.iml
.gradle
/local.properties
/.idea/workspace.xml
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
.DS_Store
/build
/captures
Binary file added .idea/caches/build_file_checksums.ser
Binary file not shown.
29 changes: 29 additions & 0 deletions .idea/codeStyles/Project.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 0 additions & 22 deletions .idea/compiler.xml

This file was deleted.

3 changes: 0 additions & 3 deletions .idea/copyright/profiles_settings.xml

This file was deleted.

78 changes: 78 additions & 0 deletions .idea/markdown-navigator.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions .idea/markdown-navigator/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 5 additions & 7 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
## Code of Conduct
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
opensource-codeofconduct@amazon.com with any additional questions or comments.
61 changes: 61 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
# Contributing Guidelines

Thank you for your interest in contributing to our project. Whether it's a bug report, new feature, correction, or additional
documentation, we greatly value feedback and contributions from our community.

Please read through this document before submitting any issues or pull requests to ensure we have all the necessary
information to effectively respond to your bug report or contribution.


## Reporting Bugs/Feature Requests

We welcome you to use the GitHub issue tracker to report bugs or suggest features.

When filing an issue, please check [existing open](https://github.com/aws-samples/aws-mobile-android-kotlin-notes/issues), or [recently closed](https://github.com/aws-samples/aws-mobile-android-kotlin-notes/issues?utf8=%E2%9C%93&q=is%3Aissue%20is%3Aclosed%20), issues to make sure somebody else hasn't already
reported the issue. Please try to include as much information as you can. Details like these are incredibly useful:

* A reproducible test case or series of steps
* The version of our code being used
* Any modifications you've made relevant to the bug
* Anything unusual about your environment or deployment


## Contributing via Pull Requests
Contributions via pull requests are much appreciated. Before sending us a pull request, please ensure that:

1. You are working against the latest source on the *master* branch.
2. You check existing open, and recently merged, pull requests to make sure someone else hasn't addressed the problem already.
3. You open an issue to discuss any significant work - we would hate for your time to be wasted.

To send us a pull request, please:

1. Fork the repository.
2. Modify the source; please focus on the specific change you are contributing. If you also reformat all the code, it will be hard for us to focus on your change.
3. Ensure local tests pass.
4. Commit to your fork using clear commit messages.
5. Send us a pull request, answering any default questions in the pull request interface.
6. Pay attention to any automated CI failures reported in the pull request, and stay involved in the conversation.

GitHub provides additional document on [forking a repository](https://help.github.com/articles/fork-a-repo/) and
[creating a pull request](https://help.github.com/articles/creating-a-pull-request/).


## Finding contributions to work on
Looking at the existing issues is a great way to find something to contribute on. As our projects, by default, use the default GitHub issue labels ((enhancement/bug/duplicate/help wanted/invalid/question/wontfix), looking at any ['help wanted'](https://github.com/aws-samples/aws-mobile-android-kotlin-notes/labels/help%20wanted) issues is a great place to start.


## Code of Conduct
This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct).
For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact
opensource-codeofconduct@amazon.com with any additional questions or comments.


## Security issue notifications
If you discover a potential security issue in this project we ask that you notify AWS/Amazon Security via our [vulnerability reporting page](http://aws.amazon.com/security/vulnerability-reporting/). Please do **not** create a public github issue.


## Licensing

See the [LICENSE](https://github.com/aws-samples/aws-mobile-android-kotlin-notes/blob/master/LICENSE) file for our project's licensing. We will ask you to confirm the licensing of your contribution.

We may ask you to sign a [Contributor License Agreement (CLA)](http://en.wikipedia.org/wiki/Contributor_License_Agreement) for larger changes.
Loading