This file contains 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
manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
xmlns:tools="http://schemas.android.com/tools" | |
package=""> | |
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | |
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | |
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" /> | |
<uses-permission android:name="android.permission.INTERNET" /> | |
<application |
This file has been truncated, but you can view the full file.
This file contains 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
"items_game" | |
{ | |
"game_info" | |
{ | |
"first_valid_class" "2" | |
"last_valid_class" "3" | |
"first_valid_item_slot" "0" | |
"last_valid_item_slot" "54" | |
"num_item_presets" "4" | |
} |
This file has been truncated, but you can view the full file.
This file contains 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
"items_game" | |
{ | |
"game_info" | |
{ | |
"first_valid_class" "2" | |
"last_valid_class" "3" | |
"first_valid_item_slot" "0" | |
"last_valid_item_slot" "54" | |
"num_item_presets" "4" | |
} |
This file contains 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
enum class ListState(val state: Int) { | |
OPEN_SELECTION(0), | |
CLOSED_SELECTION(0), | |
SELECT_ALL(0) | |
} |
This file contains 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
import android.graphics.Canvas | |
import android.graphics.drawable.Drawable | |
import android.util.TypedValue | |
import androidx.recyclerview.widget.LinearLayoutManager | |
import androidx.recyclerview.widget.RecyclerView | |
/** | |
* [RecyclerView] item decoration which adds horizontal divider between items. | |
* | |
* @author Muhammad Saeed |
This file contains 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
void main() async { | |
for (int i = 0; i < 5; i++) { | |
print('hello ${i + 1}'); | |
} | |
BlockConstructor obj = new BlockConstructor(); | |
await obj.ready; | |
print("After instantiate"); | |
} | |
class BlockConstructor { |