Skip to content
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

Paintroid 608, 609, 610 Created Landing Page with Projects List and Floating Action Buttons #1288

Open
wants to merge 56 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 52 commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
7d47c47
Landing Page Design
Rd4dev Jun 2, 2023
9d736f0
Room Database Declaration
Rd4dev Jun 4, 2023
8999e20
Save Project to Database
Rd4dev Jun 4, 2023
68ea083
PAINTROID-609 Floating action buttons for landing page
Rd4dev Jun 4, 2023
0334025
PAINTROID-610 Show all projects of the user in the landing page
Rd4dev Jun 6, 2023
3fc441a
PAINTROID-608, PAINTROID-610 LandingPage Tests and Refinements
Rd4dev Jun 10, 2023
d43065f
Fixed Static Analysis Warnings
Rd4dev Jun 10, 2023
1a4b3ce
Fixed Lint warnings
Rd4dev Jun 11, 2023
3cf1874
Fixed SprayTool context issue
Rd4dev Jun 11, 2023
9cc2e8e
Landing Page Tests Trigger
Rd4dev Jun 11, 2023
9e0643c
Fix Device Tests - Landing Page
Rd4dev Jun 13, 2023
0c3d0bf
Trigger
Rd4dev Jun 13, 2023
fbfe6ff
Trigger 2
Rd4dev Jun 13, 2023
12cb455
Fix FAILED:compileDebugAndroidTestKotlin
Rd4dev Jun 13, 2023
835fb5e
Resolved Conflicts from Refactoring Code from java to kt
Rd4dev Jun 13, 2023
6dbcc69
Refinements on Deletion, Updation, Image Creation
Rd4dev Jul 3, 2023
4bb405a
Fixed Crash on returning to Landing Page
Rd4dev Jul 13, 2023
523e9ab
testImagePreviewAfterProjectInsert bitmap check
Rd4dev Jul 13, 2023
e417b81
more options integration test - swipe up
Rd4dev Jul 15, 2023
f985fae
Trigger Build
Rd4dev Jul 15, 2023
4fae7cb
Room version roll back
Rd4dev Jul 15, 2023
0a81db3
Fixed Saving Projects with API 28 error
Rd4dev Jul 22, 2023
7f7cd6d
restored Project.xml file
Rd4dev Jul 22, 2023
7e22e87
resolved conflict with returning mime type
Rd4dev Jul 22, 2023
1f46dcf
Fixed Saving Project with API 21, 22, 23, 24 error
Rd4dev Jul 30, 2023
0ac5146
Fixed Static warnings
Rd4dev Jul 30, 2023
0cca794
Trigger after config error
Rd4dev Jul 30, 2023
dca4ca3
Trigger after thread idle
Rd4dev Jul 30, 2023
777ba14
Trigger
Rd4dev Jul 30, 2023
98cb404
Trigger
Rd4dev Jul 30, 2023
415efbb
Landing Page Design
Rd4dev Jun 2, 2023
fd4a97a
Room Database Declaration
Rd4dev Jun 4, 2023
95cf07e
Save Project to Database
Rd4dev Jun 4, 2023
6b4519d
PAINTROID-609 Floating action buttons for landing page
Rd4dev Jun 4, 2023
0203964
PAINTROID-610 Show all projects of the user in the landing page
Rd4dev Jun 6, 2023
e6d3654
PAINTROID-608, PAINTROID-610 LandingPage Tests and Refinements
Rd4dev Jun 10, 2023
cfd5e26
Fixed Static Analysis Warnings
Rd4dev Jun 10, 2023
b17c2cf
Fixed Lint warnings
Rd4dev Jun 11, 2023
cc3d54d
Fixed SprayTool context issue
Rd4dev Jun 11, 2023
71aea37
Landing Page Tests Trigger
Rd4dev Jun 11, 2023
e9c53a3
Fix Device Tests - Landing Page
Rd4dev Jun 13, 2023
08332af
Fix FAILED:compileDebugAndroidTestKotlin
Rd4dev Jun 13, 2023
476157f
Refinements on Deletion, Updation, Image Creation
Rd4dev Jul 3, 2023
5292c4f
Fixed Crash on returning to Landing Page
Rd4dev Jul 13, 2023
68ff71f
testImagePreviewAfterProjectInsert bitmap check
Rd4dev Jul 13, 2023
c6733f9
more options integration test - swipe up
Rd4dev Jul 15, 2023
13184d3
Room version roll back
Rd4dev Jul 15, 2023
bddf7ec
Fixed Saving Projects with API 28 error
Rd4dev Jul 22, 2023
e148990
restored Project.xml file
Rd4dev Jul 22, 2023
74048f8
Fixed Saving Project with API 21, 22, 23, 24 error
Rd4dev Jul 30, 2023
979c36f
Fixed Static warnings
Rd4dev Jul 30, 2023
4a8ca7b
Fixed Merge Conflict with UIInteractions
Rd4dev Aug 19, 2023
0b1ef7b
Project List Updation in Background
Rd4dev Sep 6, 2023
c43199f
Replacing !!-operator
Rd4dev Sep 8, 2023
8001b89
Resolved Conflict with Command Serializer
Rd4dev Sep 20, 2023
f8b2267
Fixed ImagePreview with Suggested Name
Rd4dev Oct 3, 2023
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
244 changes: 122 additions & 122 deletions .idea/codeStyles/Project.xml

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

5 changes: 5 additions & 0 deletions Paintroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ apply plugin: 'com.android.library'
apply plugin: 'com.hiya.jacoco-android'
apply plugin: 'com.getkeepsafe.dexcount'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'org.catrobat.gradle.androidemulators'
apply plugin: 'maven-publish'

Expand Down Expand Up @@ -151,6 +152,10 @@ dependencies {
androidTestImplementation "androidx.test.uiautomator:uiautomator:2.2.0"
testImplementation "androidx.test:core-ktx:1.4.0"
implementation 'com.android.support.test.espresso:espresso-idling-resource:3.1.0'

def room_version = "2.3.0"
implementation "androidx.room:room-ktx:$room_version"
kapt "androidx.room:room-compiler:$room_version"
}

tasks.withType(Javadoc).all {
Expand Down
Loading