Skip to content

Commit

Permalink
port from sdk 10 to 16
Browse files Browse the repository at this point in the history
initial changes.
Gradle syncs also builds, but crashes on boot. Might be due to
permission handling.
  • Loading branch information
mofosyne committed Mar 7, 2024
1 parent 37a710b commit fdea9c2
Show file tree
Hide file tree
Showing 27 changed files with 321 additions and 2,755 deletions.
3 changes: 3 additions & 0 deletions .idea/.gitignore

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

1 change: 0 additions & 1 deletion .idea/.name

This file was deleted.

18 changes: 1 addition & 17 deletions .idea/compiler.xml

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

3 changes: 0 additions & 3 deletions .idea/copyright/profiles_settings.xml

This file was deleted.

23 changes: 23 additions & 0 deletions .idea/deploymentTargetDropDown.xml

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

6 changes: 0 additions & 6 deletions .idea/encodings.xml

This file was deleted.

6 changes: 3 additions & 3 deletions .idea/gradle.xml

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

10 changes: 10 additions & 0 deletions .idea/migrations.xml

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

40 changes: 2 additions & 38 deletions .idea/misc.xml

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

9 changes: 0 additions & 9 deletions .idea/modules.xml

This file was deleted.

12 changes: 0 additions & 12 deletions .idea/runConfigurations.xml

This file was deleted.

113 changes: 0 additions & 113 deletions app/app.iml

This file was deleted.

30 changes: 20 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,31 +1,42 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 22
buildToolsVersion '25.0.0'
compileSdkVersion 33

buildFeatures {
buildConfig true
}

defaultConfig {
applicationId "com.briankhuu.nfcmessageboard"
/*minSdkVersion 16*/
minSdkVersion 10
targetSdkVersion 22
minSdkVersion 16
targetSdkVersion 33
versionCode 17
versionName "3.3"

//Required for our library version retrieval to work as of Android Studio 4.1.0: https://issuetracker.google.com/issues/158695880
buildConfigField 'int', 'VERSION_CODE', "${project.android_version_code}"
buildConfigField 'String', 'VERSION_NAME', "\"${project.android_version_name}\""
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'

}
}
namespace 'com.briankhuu.nfcmessageboard'
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
//compile 'com.android.support:appcompat-v7:22.0.0'
compile 'com.android.support:appcompat-v7:22.1.1'
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.1', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'androidx.appcompat:appcompat:1.1.0'
testImplementation 'junit:junit:4.12'

implementation 'com.google.android.material:material:1.0.0'
implementation 'com.google.android.gms:play-services-location:17.0.0'
implementation 'com.google.android.gms:play-services-maps:17.0.0'
}

/*
Expand All @@ -38,4 +49,3 @@ task copyreadme(type: Copy) {
fileName.replace("README.md", "readme.md")
}
}
tasks.copyreadme.execute()
Loading

0 comments on commit fdea9c2

Please sign in to comment.