(...);
80 | }
--------------------------------------------------------------------------------
/app/build.gradle:
--------------------------------------------------------------------------------
1 | apply plugin: 'com.android.application'
2 | apply plugin: 'org.jetbrains.kotlin.android'
3 | apply plugin: 'kotlin-parcelize'
4 | apply plugin: 'com.google.devtools.ksp'
5 |
6 | android {
7 | applicationVariants.configureEach { variant ->
8 | variant.outputs.configureEach { output ->
9 | outputFileName = defaultConfig.applicationId + "-v${variant.versionName}-${variant.name}.apk"
10 | }
11 | }
12 |
13 | lint {
14 | abortOnError false
15 | checkReleaseBuilds true
16 | disable 'MissingTranslation', 'GoogleAppIndexingWarning'
17 | }
18 |
19 | namespace MyApp.appId
20 | defaultConfig {
21 | buildConfigField("String", "ONESIGNAL_APP_ID", "\"$OneSignal.appId\"")
22 | manifestPlaceholders = [
23 | onesignal_app_id : OneSignal.appId,
24 | onesignal_google_project_number: OneSignal.googleProjectNumber
25 | ]
26 | applicationId MyApp.appId
27 | minSdkVersion Versions.minSdk
28 | compileSdk Versions.targetSdk
29 | targetSdkVersion Versions.targetSdk
30 | versionCode MyApp.version
31 | versionName MyApp.versionName
32 | vectorDrawables.useSupportLibrary = true
33 | multiDexEnabled true
34 | proguardFiles 'proguard-android-optimize.txt', 'proguard-rules.pro'
35 | consumerProguardFiles 'proguard-android-optimize.txt', 'proguard-rules.pro'
36 |
37 | javaCompileOptions {
38 | annotationProcessorOptions {
39 | arguments = [
40 | "room.schemaLocation" : "$projectDir/schemas".toString(),
41 | "room.incremental" : "true",
42 | "room.expandProjection": "true"]
43 | }
44 | }
45 | }
46 |
47 | buildTypes {
48 | buildTypes.each {
49 | it.buildConfigField("String", "ONESIGNAL_APP_ID", "\"$OneSignal.appId\"")
50 | }
51 | release {
52 | debuggable false
53 | zipAlignEnabled true
54 | minifyEnabled true
55 | shrinkResources false
56 | proguardFiles 'proguard-android-optimize.txt', 'proguard-rules.pro'
57 | consumerProguardFiles 'proguard-android-optimize.txt', 'proguard-rules.pro'
58 | }
59 | }
60 |
61 | sourceSets {
62 | main.java.srcDirs += 'src/main/kotlin'
63 | }
64 |
65 | packagingOptions {
66 | resources {
67 | pickFirsts += [
68 | 'META-INF/core_debug.kotlin_module',
69 | 'META-INF/core_release.kotlin_module',
70 | 'META-INF/library_debug.kotlin_module',
71 | 'META-INF/library_release.kotlin_module'
72 | ]
73 | }
74 | }
75 |
76 | compileOptions {
77 | sourceCompatibility JavaVersion.VERSION_17
78 | targetCompatibility JavaVersion.VERSION_17
79 | }
80 |
81 | kotlinOptions {
82 | jvmTarget = '17'
83 | }
84 |
85 | buildFeatures {
86 | buildConfig = true
87 | }
88 | }
89 |
90 | dependencies {
91 | implementation(Libs.frames) {
92 | transitive = true
93 | }
94 | // TODO: Remove comment marks to enable
95 | // implementation Libs.oneSignal
96 | }
97 |
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE/1_bug_report.yaml:
--------------------------------------------------------------------------------
1 | name: Report a Bug 🐛
2 | description: File a bug report
3 | labels: ["Status: Pending", "Type: Bug"]
4 | body:
5 | - type: markdown
6 | attributes:
7 | value: |
8 | *Thanks for taking the time to fill out this bug report!*
9 |
10 | ---
11 |
12 | - type: checkboxes
13 | id: requirements
14 | attributes:
15 | label: Requirements
16 | description: "Please make sure you have checked all of the following:"
17 | options:
18 | - label: I have verified there are no duplicate active or recent bugs, questions, or requests
19 | required: true
20 | - type: markdown
21 | attributes:
22 | value: |
23 | ---
24 |
25 | # App and device information:
26 | - type: input
27 | id: version
28 | attributes:
29 | label: Frames Version
30 | description: What version of Frames are you currently using?
31 | placeholder: ex. 3.4.4
32 | validations:
33 | required: true
34 | - type: input
35 | id: android
36 | attributes:
37 | label: Android Version
38 | description: What version of Android are you currently using?
39 | placeholder: ex. 12.0.0
40 | validations:
41 | required: true
42 | - type: input
43 | id: manufacturer
44 | attributes:
45 | label: Device Manufacturer
46 | description: What is the manufacturer of your device?
47 | placeholder: ex. Samsung, Google
48 | validations:
49 | required: true
50 | - type: input
51 | id: device
52 | attributes:
53 | label: Device Name
54 | description: What is the name of your device?
55 | placeholder: ex. Pixel 6
56 | validations:
57 | required: true
58 | - type: markdown
59 | attributes:
60 | value: |
61 | ---
62 | - type: textarea
63 | id: what-happened
64 | attributes:
65 | label: What happened?
66 | description: Please describe the bug in detail, clear and concisely.
67 | validations:
68 | required: true
69 | - type: textarea
70 | id: steps
71 | attributes:
72 | label: Reproduction Steps
73 | description: Please share information on how to reproduce the bug or issue.
74 | validations:
75 | required: true
76 | - type: textarea
77 | id: expected
78 | attributes:
79 | label: Expected behavior
80 | description: Please explain what you consider the expected behavior should be
81 | validations:
82 | required: false
83 | - type: textarea
84 | id: screenshots
85 | attributes:
86 | label: Screenshots or videos
87 | description: Please share any screenshots or videos that could help understanding the issue
88 | validations:
89 | required: false
90 | - type: textarea
91 | id: logs
92 | attributes:
93 | label: Code and/or Logs
94 | description: If you have logs for the issue, please share them (Use logcat to get them)
95 | validations:
96 | required: false
97 | - type: textarea
98 | id: context
99 | attributes:
100 | label: Additional context or info
101 | description: Please share any additional details you consider relevant to solve the issue
102 | validations:
103 | required: false
104 |
--------------------------------------------------------------------------------
/.github/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Pledge
4 |
5 | In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.
6 |
7 | ## Standards
8 |
9 | Examples of behavior that contributes to creating a positive environment include:
10 |
11 | * Using welcoming and inclusive language
12 | * Being respectful of differing viewpoints and experiences
13 | * Gracefully accepting constructive criticism
14 | * Focusing on what is best for the community
15 | * Showing empathy towards other community members
16 |
17 | Examples of unacceptable behavior by participants include:
18 |
19 | * The use of sexualized language or imagery and unwelcome sexual attention or advances
20 | * Trolling, insulting/derogatory comments, and personal or political attacks
21 | * Public or private harassment
22 | * Publishing others' private information, such as a physical or electronic address, without explicit permission
23 | * Other conduct which could reasonably be considered inappropriate in a professional setting
24 |
25 | ## Responsibilities
26 |
27 | Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
28 |
29 | Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
30 |
31 | ## Scope
32 |
33 | This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
34 |
35 | ## Enforcement
36 |
37 | Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team [via email][mail]. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
38 |
39 | Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
40 |
41 | ## Attribution
42 |
43 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
44 |
45 | [homepage]: http://contributor-covenant.org
46 | [version]: http://contributor-covenant.org/version/1/4/
47 | [mail]: mailto:hi@jahirfiquitiva.com
48 |
--------------------------------------------------------------------------------
/app/src/main/res/values-v31/m3_colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | @android:color/system_neutral1_10
5 | @android:color/system_neutral1_10
6 | @android:color/system_neutral1_900
7 |
8 | @android:color/system_accent1_600
9 | @android:color/system_accent1_0
10 |
11 | @android:color/system_neutral2_50
12 | @android:color/system_neutral2_900
13 | @android:color/system_neutral2_700
14 |
15 | @android:color/system_neutral1_10
16 | @android:color/system_neutral1_900
17 |
18 | @android:color/system_neutral2_800
19 | @android:color/system_neutral2_50
20 | @android:color/system_accent1_200
21 |
22 | @android:color/system_neutral2_100
23 |
24 | @android:color/system_accent2_600
25 | @android:color/system_accent2_0
26 | @android:color/system_accent3_600
27 | @android:color/system_accent3_0
28 |
29 |
30 | @android:color/system_neutral1_900
31 | @android:color/system_neutral1_900
32 | @android:color/system_neutral1_100
33 |
34 | @android:color/system_accent1_200
35 | @android:color/system_accent1_800
36 |
37 | @android:color/system_neutral2_800
38 | @android:color/system_neutral2_50
39 | @android:color/system_neutral2_100
40 |
41 | @android:color/system_neutral1_900
42 | @android:color/system_neutral1_100
43 |
44 | @android:color/system_neutral2_50
45 | @android:color/system_neutral2_900
46 | @android:color/system_accent1_500
47 |
48 | @android:color/system_neutral2_700
49 |
50 | @android:color/system_accent2_200
51 | @android:color/system_accent2_800
52 | @android:color/system_accent3_200
53 | @android:color/system_accent3_800
54 |
55 |
56 | @android:color/system_accent1_200
57 | @android:color/system_neutral2_900
58 | @android:color/system_accent1_500
59 |
60 |
61 |
--------------------------------------------------------------------------------
/.idea/codeStyles/Project.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 | xmlns:android
20 |
21 | ^$
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 | xmlns:.*
31 |
32 | ^$
33 |
34 |
35 | BY_NAME
36 |
37 |
38 |
39 |
40 |
41 |
42 | .*:id
43 |
44 | http://schemas.android.com/apk/res/android
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 | .*:name
54 |
55 | http://schemas.android.com/apk/res/android
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 | name
65 |
66 | ^$
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 | style
76 |
77 | ^$
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 | .*
87 |
88 | ^$
89 |
90 |
91 | BY_NAME
92 |
93 |
94 |
95 |
96 |
97 |
98 | .*
99 |
100 | http://schemas.android.com/apk/res/android
101 |
102 |
103 | ANDROID_ATTRIBUTE_ORDER
104 |
105 |
106 |
107 |
108 |
109 |
110 | .*
111 |
112 | .*
113 |
114 |
115 | BY_NAME
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
--------------------------------------------------------------------------------
/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
5 |
6 |
7 |
20 |
21 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
71 |
74 |
75 |
76 |
77 |
84 |
85 |
86 |
87 |
88 |
91 |
94 |
95 |
96 |
97 |
101 |
102 |
103 |
--------------------------------------------------------------------------------
/gradlew:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env sh
2 |
3 | ##############################################################################
4 | ##
5 | ## Gradle start up script for UN*X
6 | ##
7 | ##############################################################################
8 |
9 | # Attempt to set APP_HOME
10 | # Resolve links: $0 may be a link
11 | PRG="$0"
12 | # Need this for relative symlinks.
13 | while [ -h "$PRG" ] ; do
14 | ls=`ls -ld "$PRG"`
15 | link=`expr "$ls" : '.*-> \(.*\)$'`
16 | if expr "$link" : '/.*' > /dev/null; then
17 | PRG="$link"
18 | else
19 | PRG=`dirname "$PRG"`"/$link"
20 | fi
21 | done
22 | SAVED="`pwd`"
23 | cd "`dirname \"$PRG\"`/" >/dev/null
24 | APP_HOME="`pwd -P`"
25 | cd "$SAVED" >/dev/null
26 |
27 | APP_NAME="Gradle"
28 | APP_BASE_NAME=`basename "$0"`
29 |
30 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31 | DEFAULT_JVM_OPTS=""
32 |
33 | # Use the maximum available, or set MAX_FD != -1 to use that value.
34 | MAX_FD="maximum"
35 |
36 | warn () {
37 | echo "$*"
38 | }
39 |
40 | die () {
41 | echo
42 | echo "$*"
43 | echo
44 | exit 1
45 | }
46 |
47 | # OS specific support (must be 'true' or 'false').
48 | cygwin=false
49 | msys=false
50 | darwin=false
51 | nonstop=false
52 | case "`uname`" in
53 | CYGWIN* )
54 | cygwin=true
55 | ;;
56 | Darwin* )
57 | darwin=true
58 | ;;
59 | MINGW* )
60 | msys=true
61 | ;;
62 | NONSTOP* )
63 | nonstop=true
64 | ;;
65 | esac
66 |
67 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
68 |
69 | # Determine the Java command to use to start the JVM.
70 | if [ -n "$JAVA_HOME" ] ; then
71 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
72 | # IBM's JDK on AIX uses strange locations for the executables
73 | JAVACMD="$JAVA_HOME/jre/sh/java"
74 | else
75 | JAVACMD="$JAVA_HOME/bin/java"
76 | fi
77 | if [ ! -x "$JAVACMD" ] ; then
78 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
79 |
80 | Please set the JAVA_HOME variable in your environment to match the
81 | location of your Java installation."
82 | fi
83 | else
84 | JAVACMD="java"
85 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
86 |
87 | Please set the JAVA_HOME variable in your environment to match the
88 | location of your Java installation."
89 | fi
90 |
91 | # Increase the maximum file descriptors if we can.
92 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
93 | MAX_FD_LIMIT=`ulimit -H -n`
94 | if [ $? -eq 0 ] ; then
95 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
96 | MAX_FD="$MAX_FD_LIMIT"
97 | fi
98 | ulimit -n $MAX_FD
99 | if [ $? -ne 0 ] ; then
100 | warn "Could not set maximum file descriptor limit: $MAX_FD"
101 | fi
102 | else
103 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
104 | fi
105 | fi
106 |
107 | # For Darwin, add options to specify how the application appears in the dock
108 | if $darwin; then
109 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
110 | fi
111 |
112 | # For Cygwin, switch paths to Windows format before running java
113 | if $cygwin ; then
114 | APP_HOME=`cygpath --path --mixed "$APP_HOME"`
115 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
116 | JAVACMD=`cygpath --unix "$JAVACMD"`
117 |
118 | # We build the pattern for arguments to be converted via cygpath
119 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
120 | SEP=""
121 | for dir in $ROOTDIRSRAW ; do
122 | ROOTDIRS="$ROOTDIRS$SEP$dir"
123 | SEP="|"
124 | done
125 | OURCYGPATTERN="(^($ROOTDIRS))"
126 | # Add a user-defined pattern to the cygpath arguments
127 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then
128 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
129 | fi
130 | # Now convert the arguments - kludge to limit ourselves to /bin/sh
131 | i=0
132 | for arg in "$@" ; do
133 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
134 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
135 |
136 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
137 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
138 | else
139 | eval `echo args$i`="\"$arg\""
140 | fi
141 | i=$((i+1))
142 | done
143 | case $i in
144 | (0) set -- ;;
145 | (1) set -- "$args0" ;;
146 | (2) set -- "$args0" "$args1" ;;
147 | (3) set -- "$args0" "$args1" "$args2" ;;
148 | (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
149 | (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
150 | (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
151 | (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
152 | (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
153 | (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
154 | esac
155 | fi
156 |
157 | # Escape application args
158 | save () {
159 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
160 | echo " "
161 | }
162 | APP_ARGS=$(save "$@")
163 |
164 | # Collect all arguments for the java command, following the shell quoting and substitution rules
165 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
166 |
167 | # by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
168 | if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
169 | cd "$(dirname "$0")"
170 | fi
171 |
172 | exec "$JAVACMD" "$@"
173 |
--------------------------------------------------------------------------------
/app/src/main/res/drawable/ic_launcher_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
7 |
10 |
15 |
20 |
25 |
30 |
35 |
40 |
45 |
50 |
55 |
60 |
65 |
70 |
75 |
80 |
85 |
90 |
95 |
100 |
105 |
110 |
115 |
120 |
125 |
130 |
135 |
140 |
145 |
150 |
155 |
160 |
165 |
170 |
171 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 | Frames
4 | ======
5 |
6 | 
7 | [](https://github.com/jahirfiquitiva/Frames/releases/latest)
8 | [](https://github.com/jahirfiquitiva/Frames/actions/workflows/build.yml)
9 | [](https://crowdin.com/project/Frames/invite)
10 | [](https://github.com/sponsors/jahirfiquitiva)
11 |
12 | Free, feature-rich, easily customizable Android dashboard for wallpapers apps
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 | ## Show some :blue_heart:
23 | [](https://github.com/jahirfiquitiva/Frames)
24 | [](https://github.com/jahirfiquitiva/Frames/fork)
25 | [](https://github.com/jahirfiquitiva/Frames)
26 |
27 | [](https://github.com/jahirfiquitiva)
28 | [](https://twitter.com/jahirfiquitiva)
29 |
30 | ---
31 |
32 | # Previews
33 |
34 | ### Customizable styles
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 | ### Full-screen Viewer / Multiple themes
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 | ### Credits / Settings
52 |
53 |
54 |
55 |
56 |
57 | ---
58 |
59 | # Features:
60 | - Material Design dashboard.
61 | - License Checker.
62 | - Donations.
63 | - [OneSignal](https://onesignal.com/) notifications ready.
64 | - Cloud based (only) wallpapers.
65 | - App can work offline.
66 | - Categories section.
67 | - Favorites section.
68 | - Wallpapers can be applied and downloaded.
69 | - Wallpapers include a full-screen viewer with zooming capabilities and detailed info viewer.
70 | - Credits section.
71 | - Settings section with these options:
72 | - Option to change app theme (Light, Dark, System, AMOLED).
73 | - Option to color navigation bar (Lollipop+).
74 | - Option to clear app cache.
75 | - Tablet layouts.
76 | - Lots of customizations.
77 | - Works with Android 5.0 and newer.
78 |
79 | ## Help translating
80 | :page_facing_up: Help making Frames available in more languages. [Click here to go to the translation site](https://crowdin.com/project/Frames/invite)
81 |
82 | ## Changelog
83 | :radio_button: You can find it in the [Releases page](https://github.com/jahirfiquitiva/Frames/releases)
84 |
85 | ---
86 |
87 | # Including in your project
88 | Frames is available via Maven, so getting it as simple as adding it as a dependency, like this:
89 |
90 | 1. Add `MavenCentral` and `Jitpack` to your root `build.gradle` file
91 | ```gradle
92 | allprojects {
93 | repositories {
94 | mavenCentral()
95 | maven { url 'https://jitpack.io' }
96 | }
97 | }
98 | ```
99 | 2. Add the dependency in your project `build.gradle` file
100 | ```gradle
101 | dependencies {
102 | implementation('dev.jahir:Frames:{latest version}@aar') {
103 | transitive = true
104 | }
105 | }
106 | ```
107 | where `{latest version}` corresponds to published version in [](https://github.com/jahirfiquitiva/Frames/releases/latest)
108 |
109 | ## How to implement
110 | :page_with_curl: Everything you need to know can be found in the **[Wiki Docs](https://github.com/jahirfiquitiva/Frames/wiki/)**
111 |
112 | ## Still need help :question:
113 | Just join our Discord Server and make a post. We'll help you as soon as possible. [](https://discord.gg/78h7xgj)
114 |
115 | ### Check out [some cool apps](https://jahir.dev/blog/post-of-fame) built using this dashboard
116 |
117 | ---
118 |
119 | # Developed by
120 |
121 | ### [Jahir Fiquitiva](https://jahir.dev/)
122 |
123 | [](https://github.com/jahirfiquitiva)
124 | [](https://twitter.com/jahirfiquitiva)
125 |
126 | If you found this app/library helpful and want to thank me, you can:
127 |
128 |
129 |
130 |
131 |
132 | **Thanks in advance!** :pray:
133 |
134 | ## Special thanks 🙌
135 |
136 | - [Eduardo Pratti](https://pratti.design/) 🎨
137 | - [Sherry Sabatine](https://www.photography-by-sherry.com/) 💵
138 | - [Allan Wang](https://www.allanwang.ca/) 💻
139 | - [James Fenn](https://theandroidmaster.github.io/) 🔌
140 | - [Maximilian Keppeler](https://twitter.com/maxKeppeler) 🔌
141 | - [Sasi Kanth](https://twitter.com/its_sasikanth) 🔌
142 | - [Alexandre Piveteau](https://github.com/alexandrepiveteau) 💻
143 | - [Lukas Koller](https://github.com/kollerlukas) 🔌
144 | - [Patryk Goworowski](https://twitter.com/pgoworowski) 🎨
145 | - [Lumiq Creative](https://lumiqcreative.com/) 🎨
146 | - [Jackson Hayes](https://jacksonhayes.xyz/) 📖
147 | - [Kevin Aguilar](https://twitter.com/kevttob) 🎨
148 | - [Anthony Nguyen](https://twitter.com/link6155) 🎨
149 |
150 | ---
151 |
152 | # License
153 |
154 | This app is shared under the CreativeCommons Attribution-ShareAlike license.
155 |
156 | Copyright © 2020 Jahir Fiquitiva
157 |
158 | Licensed under the CreativeCommons Attribution-ShareAlike
159 | 4.0 International License. You may not use this file except in compliance
160 | with the License. You may obtain a copy of the License at
161 |
162 | http://creativecommons.org/licenses/by-sa/4.0/legalcode
163 |
164 | Unless required by applicable law or agreed to in writing, software
165 | distributed under the License is distributed on an "AS IS" BASIS,
166 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
167 | See the License for the specific language governing permissions and
168 | limitations under the License.
169 |
170 | ## Library source
171 |
172 | As you may know, the [library source](https://github.com/jahirfiquitiva/Frames/tree/master) is open-source. This means that you can fork it and do your own modifications, but it has some conditions:
173 |
174 | When using the [library source](https://github.com/jahirfiquitiva/Frames/tree/master), anything from it: errors, crashes, issues, etc. including successful builds, must be done completely by yourself and under your own risk and responsibility. I **will not** provide any help/support when using the [library source](https://github.com/jahirfiquitiva/Frames/tree/master).
175 |
176 | Finally, be sure your projects comply with the [license previously mentioned](https://github.com/jahirfiquitiva/Frames#license). Otherwise I will be taking the required legal actions. I hope you understand.
177 |
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | ## Creative Commons Attribution-ShareAlike 4.0 International Public License
2 |
3 | By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.
4 |
5 | ### Section 1 – Definitions.
6 |
7 | a. __Adapted Material__ means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.
8 |
9 | b. __Adapter's License__ means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.
10 |
11 | c. __BY-SA Compatible License__ means a license listed at [creativecommons.org/compatiblelicenses](http://creativecommons.org/compatiblelicenses), approved by Creative Commons as essentially the equivalent of this Public License.
12 |
13 | d. __Copyright and Similar Rights__ means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.
14 |
15 | e. __Effective Technological Measures__ means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.
16 |
17 | f. __Exceptions and Limitations__ means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.
18 |
19 | g. __License Elements__ means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution and ShareAlike.
20 |
21 | h. __Licensed Material__ means the artistic or literary work, database, or other material to which the Licensor applied this Public License.
22 |
23 | i. __Licensed Rights__ means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.
24 |
25 | j. __Licensor__ means the individual(s) or entity(ies) granting rights under this Public License.
26 |
27 | k. __Share__ means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.
28 |
29 | l. __Sui Generis Database Rights__ means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.
30 |
31 | m. __You__ means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning.
32 |
33 | ### Section 2 – Scope.
34 |
35 | a. ___License grant.___
36 |
37 | 1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:
38 |
39 | A. reproduce and Share the Licensed Material, in whole or in part; and
40 |
41 | B. produce, reproduce, and Share Adapted Material.
42 |
43 | 2. __Exceptions and Limitations.__ For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions.
44 |
45 | 3. __Term.__ The term of this Public License is specified in Section 6(a).
46 |
47 | 4. __Media and formats; technical modifications allowed.__ The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material.
48 |
49 | 5. __Downstream recipients.__
50 |
51 | A. __Offer from the Licensor – Licensed Material.__ Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License.
52 |
53 | B. __Additional offer from the Licensor – Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapter’s License You apply.
54 |
55 | C. __No downstream restrictions.__ You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.
56 |
57 | 6. __No endorsement.__ Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i).
58 |
59 | b. ___Other rights.___
60 |
61 | 1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.
62 |
63 | 2. Patent and trademark rights are not licensed under this Public License.
64 |
65 | 3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties.
66 |
67 | ### Section 3 – License Conditions.
68 |
69 | Your exercise of the Licensed Rights is expressly made subject to the following conditions.
70 |
71 | a. ___Attribution.___
72 |
73 | 1. If You Share the Licensed Material (including in modified form), You must:
74 |
75 | A. retain the following if it is supplied by the Licensor with the Licensed Material:
76 |
77 | i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);
78 |
79 | ii. a copyright notice;
80 |
81 | iii. a notice that refers to this Public License;
82 |
83 | iv. a notice that refers to the disclaimer of warranties;
84 |
85 | v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable;
86 |
87 | B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and
88 |
89 | C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License.
90 |
91 | 2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.
92 |
93 | 3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable.
94 |
95 | b. ___ShareAlike.___
96 |
97 | In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply.
98 |
99 | 1. The Adapter’s License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-SA Compatible License.
100 |
101 | 2. You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material.
102 |
103 | 3. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply.
104 |
105 | ### Section 4 – Sui Generis Database Rights.
106 |
107 | Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:
108 |
109 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database;
110 |
111 | b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and
112 |
113 | c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database.
114 |
115 | For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.
116 |
117 | ### Section 5 – Disclaimer of Warranties and Limitation of Liability.
118 |
119 | a. __Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.__
120 |
121 | b. __To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.__
122 |
123 | c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.
124 |
125 | ### Section 6 – Term and Termination.
126 |
127 | a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.
128 |
129 | b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates:
130 |
131 | 1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or
132 |
133 | 2. upon express reinstatement by the Licensor.
134 |
135 | For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License.
136 |
137 | c. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.
138 |
139 | d. Sections 1, 5, 6, 7, and 8 survive termination of this Public License.
140 |
141 | ### Section 7 – Other Terms and Conditions.
142 |
143 | a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.
144 |
145 | b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.t stated herein are separate from and independent of the terms and conditions of this Public License.
146 |
147 | ### Section 8 – Interpretation.
148 |
149 | a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.
150 |
151 | b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.
152 |
153 | c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.
154 |
155 | d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.
156 |
157 | ```
158 | Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at [creativecommons.org/policies](http://creativecommons.org/policies), Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses.
159 |
160 | Creative Commons may be contacted at creativecommons.org
161 | ```
--------------------------------------------------------------------------------