Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jharsh1202/mark-my-review_android

Mark My Review scans and creates QR codes for feedback forms. Easier convenient and reliable feedback/review solution.
https://github.com/jharsh1202/mark-my-review_android

android android-app android-application android-library android-studio gradle java qrcode qrcode-generator qrcode-scanner review sqlite sqlite3 zxing zxing-library zxing-qrcode

Last synced: 19 days ago
JSON representation

Mark My Review scans and creates QR codes for feedback forms. Easier convenient and reliable feedback/review solution.

Awesome Lists containing this project

README

        

# Mark_My_Review

The project is loosely based on the ZXing Android Barcode Scanner application, but is not affiliated with the official ZXing project.

Reason: Sole purpose to create this was learning.

Benefits: How we give feedback/reviews in most places is by writing in their feedback book, which is neither a secure record (easily be manipulated), nor convinient
Here in this app we can simply create our custom QR codes for each place and people can submit reviews as when they want to from wherever they want to, they are not worried of their anonymity.

How to Use:
1. Simply Scan any QRcode by pressing 'Scan' button, and that opens a feedback form created by the organization or company or wherever place your're visiting.
2. If you want to create a feedback form for yourself simply click on 'create' and login with your google account, as your're done with it just press back.
3. now click on 'create QR' button if you want to generate and download QR code for same form you created.
(QR Image gets downloaded in directory 'Android/data/com.example.markmyreview' )

Just clone this directory and make commits as you wish
Happy learning!!

![image](https://user-images.githubusercontent.com/41900044/95005795-1e2b4280-061a-11eb-999b-6ab6d86e06f8.png)
![image](https://user-images.githubusercontent.com/41900044/95005814-4155f200-061a-11eb-9aa8-410dac5e8150.png)
![image](https://user-images.githubusercontent.com/41900044/95005821-65193800-061a-11eb-9e27-bb089cb3016f.png)
![image](https://user-images.githubusercontent.com/41900044/95005825-76624480-061a-11eb-96b9-3a9eb24ec7f3.png)

Edit the manifest file as:
```











```

build.gradle (app)
```
apply plugin: 'com.android.application'

android {
compileSdkVersion project.androidTargetSdk

defaultConfig {
minSdkVersion 24
targetSdkVersion project.androidTargetSdk
versionCode 410
versionName "4.1.0"
}

def validConfig
def keystoreFile
def keystorePassword
def keystoreAlias

try {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
keystoreFile = properties.getProperty('keystore.file')
keystorePassword = properties.getProperty('keystore.password')
keystoreAlias = properties.getProperty('keystore.alias')
validConfig = keystoreFile != null && keystorePassword != null && keystoreAlias != null
} catch (error) {
validConfig = false
}

if (validConfig) {
System.out.println("Release signing configured with " + keystoreFile)
signingConfigs {
release {
storeFile project.rootProject.file(keystoreFile)
storePassword keystorePassword
keyAlias keystoreAlias
keyPassword keystorePassword
}
}
} else {
System.out.println("Specify keystore.file, keystore.alias and keystore.password in local.properties to enable release signing.")
}

buildTypes {
release {
if (validConfig) {
signingConfig signingConfigs.release
}

minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

dependencies {
// If you use this from an external project, use the following instead:
// implementation 'com.journeyapps:zxing-android-embedded:'
implementation project(':zxing-android-embedded')
implementation 'androidmads.library.qrgenearator:QRGenearator:1.0.4'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'

// leakcanary is for development purposes only
// https://github.com/square/leakcanary
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.5'
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'

// AboutLibraries
implementation "com.mikepenz:aboutlibraries:6.2.3"
}
```

build.gradle (project)
```
buildscript {
repositories {
google()
jcenter()
}

dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
}
}

subprojects {
repositories {
google()
jcenter()
mavenLocal()
}

version = '4.1.0'
group = 'com.journeyapps'

ext.androidTargetSdk = 28
ext.zxingCore = 'com.google.zxing:core:3.4.0'
}
```
settings.gradle (Project)
```
include ':app'
include ':zxing-android-embedded'
rootProject.name = "Mark My Review"
```