leejunhui
leejunhui
项目拉下来之后,卡在了 `Resovling Dependencies`,然后按照惯例去 `android` 文件夹下执行 `./gradlew` 命令等待重新编译,结果报了一个错如下: ``` FAILURE: Build failed with an exception. * What went wrong: Could not determine java version from '13.0.1'. ``` [经过谷歌之后,在StackOverflow上找到了方案,](https://stackoverflow.com/questions/58345916/android-launch-issues-unsupported-class-file-major-version-57)
```objectivec @interface YYMessage : NSObject @property (nonatomic, assign) uint64_t messageId; @property (nonatomic, strong) NSString *content; @property (nonatomic, strong) NSDate *time; @end @implementation YYMessage + (NSDictionary *)modelCustomPropertyMapper { return @{@"messageId":@"i", @"content":@"c",...
```ts type MyReadonly = { readonly [P in keyof T]: T[P]; } /* _____________ 测试用例 _____________ */ import type { Equal, Expect } from '@type-challenges/utils' type cases = [ Expect,...
```ts type MyPick = { [P in K]: T[P] } /* _____________ 测试用例 _____________ */ import type { Equal, Expect } from '@type-challenges/utils' type cases = [ Expect, Expect, //...
```ts type HelloWorld = string // expected to be a string /* _____________ 测试用例 _____________ */ import type { Equal, Expect, NotAny } from '@type-challenges/utils' type cases = [ Expect,...
## :scroll: Description Reuse the `vendorIdentifier` if already fetched beforehand.Due to the China mainland privacy policy, apps cannot call the UIDevice.currentDevice.identifierForVendor multiple times in a short period of time.So to...