Skip to content

Commit

Permalink
Merge branch 'main' into user/hirosn/clangtidyissue
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomsonTan authored Sep 6, 2024
2 parents 2599dc7 + 9e3ec45 commit 777b230
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
working-directory: lib\android_build
- name: Upload Reports
if: failure()
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: reports
path: lib\android_build\maesdk\build\reports
2 changes: 1 addition & 1 deletion lib/android_build/maesdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ dependencies {
annotationProcessor "androidx.room:room-compiler:$room_version"

testImplementation 'junit:junit:4.13.2'
testImplementation 'org.mockito:mockito-inline:3.2.4'
testImplementation 'org.mockito:mockito-core:5.13.0'
testImplementation "androidx.room:room-testing:$room_version"
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
Expand Down
7 changes: 4 additions & 3 deletions lib/include/public/Version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#define MAT_VERSION_HPP
// WARNING: DO NOT MODIFY THIS FILE!
// This file has been automatically generated, manual changes will be lost.
#define BUILD_VERSION_STR "3.8.32.1"
#define BUILD_VERSION 3,8,32,1
#define BUILD_VERSION_STR "3.8.249.1"
#define BUILD_VERSION 3,8,249,1

#ifndef RESOURCE_COMPILER_INVOKED
#include "ctmacros.hpp"
Expand All @@ -18,7 +18,7 @@ namespace MAT_NS_BEGIN {
uint64_t const Version =
((uint64_t)3 << 48) |
((uint64_t)8 << 32) |
((uint64_t)32 << 16) |
((uint64_t)249 << 16) |
((uint64_t)1);

} MAT_NS_END
Expand All @@ -27,3 +27,4 @@ namespace PAL_NS_BEGIN { } PAL_NS_END

#endif // RESOURCE_COMPILER_INVOKED
#endif

0 comments on commit 777b230

Please sign in to comment.