Skip to content

Commit

Permalink
Merge pull request #145 from millicast/bugfix/add-missing-plugin
Browse files Browse the repository at this point in the history
Add missing `com.github.triplet.play` plugin
  • Loading branch information
aravind-raveendran authored May 27, 2024
2 parents a1df27f + 514fddd commit 5b2c2d2
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
apply plugin: "com.android.application"
apply plugin: "com.facebook.react"
apply plugin: "org.jetbrains.kotlin.android"

plugins {
id 'com.android.application'
id 'com.facebook.react'
id 'org.jetbrains.kotlin.android'
id 'com.github.triplet.play' version '3.9.1'
}
/**
* This is the configuration block to customize your React Native Android app.
* By default you don't need to apply any configuration, just uncomment the lines you need.
Expand Down Expand Up @@ -79,8 +81,8 @@ android {
applicationId "io.dolby.rn.interactiveplayer"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
versionCode Integer.valueOf(System.env.VERSION_CODE ?: 1)
versionName System.env.VERSION_NAME ?: "1.0"
}
signingConfigs {
release {
Expand Down

0 comments on commit 5b2c2d2

Please sign in to comment.