Skip to content

Commit

Permalink
Merge pull request #12 from SecUSo/update/api-34
Browse files Browse the repository at this point in the history
Update/api 34
  • Loading branch information
coderPaddyS authored Apr 21, 2024
2 parents 2fe9923 + c62c79b commit be4c1f9
Show file tree
Hide file tree
Showing 12 changed files with 396 additions and 444 deletions.
41 changes: 31 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,29 +1,50 @@
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 27
buildToolsVersion "27.0.0"
compileSdk 34

namespace "org.secuso.privacyfriendlyrockpaperscissorsboardgame"
defaultConfig {
applicationId "org.secuso.privacyfriendlyrockpaperscissorsboardgame"
minSdkVersion 16
targetSdkVersion 27
versionCode 4
versionName "1.3"
targetSdkVersion 34
versionCode 5
versionName "1.3.1"
vectorDrawables.useSupportLibrary = true
}

applicationVariants.configureEach { variant ->
variant.outputs.configureEach {
outputFileName = "pfa-rockpaperscissors-${variant.name}-v${variant.versionName}.apk"
}
}

buildFeatures {
buildConfig = true
}

buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_17.toString()
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:27.0.2'
compile 'com.android.support:design:27.0.2'
compile 'com.android.support:support-v4:27.0.2'
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.android.support:design:27.0.2'
implementation 'com.android.support:support-v4:27.0.2'
}
3 changes: 2 additions & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
android:theme="@style/AppTheme">
<activity
android:name=".activities.SplashActivity"
android:theme="@style/SplashTheme">
android:theme="@style/SplashTheme"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
Expand Down

This file was deleted.

Loading

0 comments on commit be4c1f9

Please sign in to comment.