Skip to content

Commit

Permalink
ADDED: Constants for intent extras keys
Browse files Browse the repository at this point in the history
UPDATED: Version code
  • Loading branch information
shannon-rodricks committed Mar 24, 2022
1 parent 5a436ed commit 5d1c486
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "1.5.30"
ext.kotlin_version = "1.6.10"
repositories {
google()
mavenCentral()
Expand Down
7 changes: 3 additions & 4 deletions madassistant-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ plugins {
}

android {
compileSdkVersion 30
compileSdkVersion 31

defaultConfig {
minSdkVersion 21
targetSdkVersion 31

versionCode 11
versionName "0.0.11"
versionCode 12
versionName "0.0.12"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand All @@ -35,7 +35,6 @@ android {

dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.6.0'

testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ package com.evdayapps.madassistant.common

object MADAssistantConstants {
const val AIDLVersion = 1

const val KEY_EXTRA_INFO = "info"
const val KEY_EXTRA_AIDL_VERSION = "aidlVersion"
}


0 comments on commit 5d1c486

Please sign in to comment.