Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: android ci #178

Merged
merged 2 commits into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/picsa-apps/extension-app-native/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "io.picsa.extension"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 3034000
versionName "3.34.0"
versionCode 3034001
versionName "3.34.1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down Expand Up @@ -42,7 +42,7 @@ dependencies {
implementation project(':capacitor-cordova-android-plugins')

// Required for capacitor-video-player
implementation 'com.google.android.gms:play-services-cast-framework:21.2.0'
implementation 'com.google.android.gms:play-services-cast-framework:21.3.0'

implementation(platform("com.google.firebase:firebase-bom:32.3.1"))
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,5 @@
import com.getcapacitor.BridgeActivity;

public class MainActivity extends BridgeActivity {
// required for capacitor-video-player
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
CastContext.getSharedInstance(this);
}

}
2 changes: 1 addition & 1 deletion libs/environments/src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ import packageJson from '../../../package.json';

export const APP_VERSION = {
number: packageJson.version,
date: '2023-09-19',
date: '2023-09-20',
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "picsa-apps",
"version": "3.34.0",
"version": "3.34.1",
"license": "See LICENSE",
"scripts": {
"ng": "nx",
Expand Down
Loading