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
androidx-compose-material3 = { group = "androidx.compose.material3", name = "material3" } # before | |
androidx-compose-material3 = { group = "androidx.compose.material3", name = "material3", version="1.4.0-alpha14" } # after |
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
package com.keelim.ApTest; | |
import java.util.Random; | |
public class Controller0 { | |
public static final int BAD_TOKEN = -1; | |
private final Random random; | |
public Controller0() { |
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
package com.keelim.ap.after; | |
import android.os.IBinder; | |
import android.view.WindowManager; | |
import com.keelim.ap.*; | |
import com.keelim.test.after.WindowManagerGlobal; | |
import com.keelim.test.after.WindowState; | |
import com.keelim.test.after.WindowToken; |
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
package com.keelim.test.after; | |
import java.util.HashMap; | |
import java.util.Map; | |
import java.util.function.Function; | |
public class Mapping { // Stream 을 활용한 정리를 할 것 | |
int rootType = 0; | |
Map<Integer, Function<String, Integer>> map = new HashMap<>(); |