| File | Name | Developer | Date | 
|---|---|---|---|
| 005.zip | 005 | Sega | 1981 | 
| 100lions.zip | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <scheme name="Darcula Logcat" version="142" parent_scheme="Darcula"> | |
| <metaInfo> | |
| <property name="created">2023-07-31T21:45:04</property> | |
| <property name="ide">AndroidStudio</property> | |
| <property name="ideVersion">2022.3.1.18</property> | |
| <property name="modified">2023-07-31T21:45:07</property> | |
| <property name="originalScheme">Darcula Logcat</property> | |
| </metaInfo> | |
| <attributes> | |
| <option name="LOGCAT_ASSERT_OUTPUT"> | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | Interceptor httpInterceptor = chain -> { | |
| Request request = chain.request(); | |
| Response response = chain.proceed(request); | |
| if (response.request().url().toString().contains("https://app-api.pixiv.net")) { | |
| String jsonString = response.body().string(); | |
| jsonString = jsonString.replace("https:\\/\\/i.pximg.net", "http:\\/\\/i.pximg.net"); | |
| ResponseBody newBody = ResponseBody.create(response.body().contentType(), jsonString); | |
| return response.newBuilder().body(newBody).build(); | |
| } | |
| return chain.proceed(request); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | [Unit] | |
| Description=Supervisord Daemon | |
| After=rc-local.service nss-user-lookup.target | |
| [Service] | |
| Type=forking | |
| ExecStart=/usr/bin/supervisord -c /etc/supervisord.conf | |
| [Install] | |
| WantedBy=multi-user.target | 
AndroidManifest内添加
android:requestLegacyExternalStorage="true"