浏览代码

Reset version number

dev
Denys Podymskyy 4 年前
父节点
当前提交
38775db8d5
共有 2 个文件被更改,包括 5 次插入5 次删除
  1. +3
    -3
      ui/build.gradle
  2. +2
    -2
      version.gradle

+ 3
- 3
ui/build.gradle 查看文件

@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android' apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt' apply plugin: 'kotlin-kapt'


version wireguardVersionName
version bubbleVpnVersionName
group groupName group groupName


// Create a variable called keystorePropertiesFile, and initialize it to your // Create a variable called keystorePropertiesFile, and initialize it to your
@@ -27,8 +27,8 @@ android {
applicationId 'com.getbubblenow.android' applicationId 'com.getbubblenow.android'
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 29 targetSdkVersion 29
versionCode wireguardVersionCode
versionName wireguardVersionName
versionCode bubbleVpnVersionCode
versionName bubbleVpnVersionName
buildConfigField 'int', 'MIN_SDK_VERSION', "$minSdkVersion.apiLevel" buildConfigField 'int', 'MIN_SDK_VERSION', "$minSdkVersion.apiLevel"
} }
// If the keystore file exists // If the keystore file exists


+ 2
- 2
version.gradle 查看文件

@@ -1,6 +1,6 @@
buildscript { buildscript {
ext { ext {
wireguardVersionCode = 474
wireguardVersionName = '1.0.20200407'
bubbleVpnVersionCode = 1
bubbleVpnVersionName = '1.0.0'
} }
} }

正在加载...
取消
保存