Skip to content

Commit

Permalink
Update version and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fgl27 committed Aug 3, 2022
1 parent e993300 commit 209c0bf
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 20 deletions.
Empty file added apk.local.properties
Empty file.
6 changes: 3 additions & 3 deletions apk/app/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ echo -e "\n Script start $(date)\n";

#Folders Folder= you app folder SDK_Folder android sdk folder Download it if you don't have it, don't remove the sdk.dir= from the line
FOLDER="$(dirname ""$(dirname "$0")"")";
SDK_FOLDER="$HOME"/android/sdk;
SDK_FOLDER="$HOME"/Android/Sdk;
SDK_DIR="sdk.dir=$SDK_FOLDER";
NDK_DIR="ndk.dir=$SDK_FOLDER/ndk-bundle";

Expand All @@ -39,8 +39,8 @@ BAPP=1;
SIGN=1;
TOOLVERSION=$(grep buildTools "$FOLDER"/versions.gradle | head -n1 | cut -d\' -f2);
ZIPALIGN_FOLDER=$SDK_FOLDER/build-tools/$TOOLVERSION/zipalign;
KEY_FOLDER="$HOME"/android/temp/sign/fgl_pem.key;
KEY_PASS=$(<"$HOME"/android/temp/sign/pass);
KEY_FOLDER="$HOME"/Android/sign/fgl_pem.key;
KEY_PASS=$(<"$HOME"/Android/sign/pass);

# out app folder and out app name
VERSION=$(grep publishVersion "$FOLDER"/versions.gradle | head -n1 | cut -d\' -f2 | sed 's/\./_/' | sed 's/\./_/');
Expand Down
8 changes: 4 additions & 4 deletions apk/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ ext.versions = [
targetSdk : 31,
compileSdk : 31,
buildTools : '33.0.0',
gradlePlugin : '7.2.1',
gradlePlugin : '7.2.2',

publishVersion : '3.0.',
publishVersionCode : 335,
publishVersionCode : 336,

tray : '0.12.0',
leanback : '1.0.0',
tvprovider : '1.0.0',
benmanes : '0.42.0',
googlegson : '2.9.0',
googlegson : '2.9.1',
webkit : '1.4.0',

//Crashlytics
firebase_bom : '30.3.0',
firebase_bom : '30.3.1',
firebase_crashlytics_gradle: '2.9.1',
google_services : '4.3.13',
]
20 changes: 7 additions & 13 deletions app/general/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,15 @@
//Spacing for release maker not trow errors from jshint
var version = {
VersionBase: '3.0',
publishVersionCode: 335, //Always update (+1 to current value) Main_version_java after update publishVersionCode or a major update of the apk is released
ApkUrl: 'https://github.com/fgl27/SmartTwitchTV/releases/download/335/SmartTV_twitch_3_0_335.apk',
WebVersion: 'July 27 2022',
publishVersionCode: 336, //Always update (+1 to current value) Main_version_java after update publishVersionCode or a major update of the apk is released
ApkUrl: 'https://github.com/fgl27/SmartTwitchTV/releases/download/336/SmartTV_twitch_3_0_336.apk',
WebVersion: 'August 03 2022',
WebTag: 616, //Always update (+1 to current value) Main_version_web after update Main_minversion or a major update of the web part of the app
changelog: [
{
title: 'August 03 2022 and Apk Version 3.0.336',
changes: ['Fix missing notification streamer name', 'Migrate Vod seek preview image to new Twitch API']
},
{
title: 'Web Version July 27 2022',
changes: ['Fixes issue when using the app without a user']
Expand Down Expand Up @@ -53,16 +57,6 @@ var version = {
'Update Feature screen to use new Twitch API',
'General improves'
]
},
{
title: 'Web Version July 11 2022',
changes: [
'Update User games screen, Twitch API no longer support Followed games this API is unsupported and may stop working, this Followed games API can only provide 100 Live games, if you follow more then that the last Games you follow will not show',
'Update User channel Vod screen to use new Twitch API',
'Update Game Vod screen to use new Twitch API',
'Remove unsupported side panel screens',
'General improves'
]
}
]
};

0 comments on commit 209c0bf

Please sign in to comment.