-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
200be0b
commit febe7da
Showing
10 changed files
with
351 additions
and
18 deletions.
There are no files selected for viewing
Binary file not shown.
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
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":4,"versionName":"1.4","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}] | ||
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":5,"versionName":"1.5","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}] |
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
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
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
85 changes: 85 additions & 0 deletions
85
xgetter/src/main/java/com/htetznaing/xgetter/OkRuLinks.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
package com.htetznaing.xgetter; | ||
|
||
public class OkRuLinks { | ||
String url; | ||
String mobile144px; | ||
String lowest240px; | ||
String low360px; | ||
String sd480px; | ||
String HD; | ||
String FullHD; | ||
String quad2K; | ||
String ultra4K; | ||
|
||
public String getUrl() { | ||
return url; | ||
} | ||
|
||
public String getMobile144px() { | ||
return mobile144px; | ||
} | ||
|
||
public String getLowest240px() { | ||
return lowest240px; | ||
} | ||
|
||
public String getLow360px() { | ||
return low360px; | ||
} | ||
|
||
public String getSd480px() { | ||
return sd480px; | ||
} | ||
|
||
public String getHD() { | ||
return HD; | ||
} | ||
|
||
public String getFullHD() { | ||
return FullHD; | ||
} | ||
|
||
public String getQuad2K() { | ||
return quad2K; | ||
} | ||
|
||
public String getUltra4K() { | ||
return ultra4K; | ||
} | ||
|
||
public void setUrl(String url) { | ||
this.url = url; | ||
} | ||
|
||
public void setMobile144px(String mobile144px) { | ||
this.mobile144px = mobile144px; | ||
} | ||
|
||
public void setLowest240px(String lowest240px) { | ||
this.lowest240px = lowest240px; | ||
} | ||
|
||
public void setLow360px(String low360px) { | ||
this.low360px = low360px; | ||
} | ||
|
||
public void setSd480px(String sd480px) { | ||
this.sd480px = sd480px; | ||
} | ||
|
||
public void setHD(String HD) { | ||
this.HD = HD; | ||
} | ||
|
||
public void setFullHD(String fullHD) { | ||
FullHD = fullHD; | ||
} | ||
|
||
public void setQuad2K(String quad2K) { | ||
this.quad2K = quad2K; | ||
} | ||
|
||
public void setUltra4K(String ultra4K) { | ||
this.ultra4K = ultra4K; | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package com.htetznaing.xgetter; | ||
|
||
public class VkLinks { | ||
String url240,url360,url480,url720,url1080; | ||
|
||
public String getUrl240() { | ||
return url240; | ||
} | ||
|
||
public void setUrl240(String url240) { | ||
this.url240 = url240; | ||
} | ||
|
||
public String getUrl360() { | ||
return url360; | ||
} | ||
|
||
public void setUrl360(String url360) { | ||
this.url360 = url360; | ||
} | ||
|
||
public String getUrl480() { | ||
return url480; | ||
} | ||
|
||
public void setUrl480(String url480) { | ||
this.url480 = url480; | ||
} | ||
|
||
public String getUrl720() { | ||
return url720; | ||
} | ||
|
||
public void setUrl720(String url720) { | ||
this.url720 = url720; | ||
} | ||
|
||
public String getUrl1080() { | ||
return url1080; | ||
} | ||
|
||
public void setUrl1080(String url1080) { | ||
this.url1080 = url1080; | ||
} | ||
} |
Oops, something went wrong.