Skip to content

Commit

Permalink
fix(android): fix build deps (#13317)
Browse files Browse the repository at this point in the history
* build(android): use latest kotlin version

* fix: fix snapshot error (workaround)
  • Loading branch information
hansemannn committed Mar 21, 2022
1 parent 3e54924 commit dbb7177
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/

buildscript {
ext.kotlin_version = '1.5.21'
ext.kotlin_version = '1.6.10'

repositories {
google()
Expand Down
2 changes: 1 addition & 1 deletion android/templates/build/root.build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

buildscript {
ext.kotlin_version = '1.5.21'
ext.kotlin_version = '1.6.10'

repositories {
google()
Expand Down
2 changes: 1 addition & 1 deletion android/titanium/libv8-services.js
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ async function createSnapshot() {
// Post rolled-up "ti.main" script to server and obtain a snapshot ID as a response.
// We will send an HTTP request for the snapshot code later.
console.log('Attempting to request snapshot...');
const snapshotUrl = 'https://v8-snapshot.appcelerator.com';
const snapshotUrl = 'http://v8-snapshot.appcelerator.com'; // TODO: Migrate to Github Artifacts once ready
const packageJsonData = await loadPackageJson();
const requestOptions = {
body: {
Expand Down

0 comments on commit dbb7177

Please sign in to comment.