Merge develop into master #1

Merged
SemvdH merged 297 commits from develop into main 2021-01-06 22:20:51 +00:00
2 changed files with 7 additions and 0 deletions
Showing only changes of commit c4fd44ad76 - Show all commits

View File

@@ -30,6 +30,12 @@ android {
dependencies {
def room_version = "2.2.5"
implementation "androidx.room:room-runtime:$room_version"
annotationProcessor "androidx.room:room-compiler:$room_version"
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'

View File

@@ -5,6 +5,7 @@ public class Coupon {
private String code;
private String reward;
public Coupon(String code, String reward) {
this.code = code;
this.reward = reward;