File tree Expand file tree Collapse file tree 6 files changed +6
-5
lines changed
com.google.android.appbundle/Editor/Scripts/Internal/BuildTools
com.google.play.assetdelivery
Samples/AssetDeliveryDemo/Scripts
com.google.play.common/Runtime/Scripts/LoadingScreen
com.google.play.review/Runtime/Scripts Expand file tree Collapse file tree 6 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -41,11 +41,13 @@ public class ApkSigner : IBuildTool
41
41
private readonly AndroidBuildTools _androidBuildTools ;
42
42
private readonly JavaUtils _javaUtils ;
43
43
44
+ #if ! UNITY_2018_1_OR_NEWER
44
45
private string _apkSignerJarPath ;
45
46
private string _keystoreName ;
46
47
private string _keystorePass ;
47
48
private string _keyaliasName ;
48
49
private string _keyaliasPass ;
50
+ #endif
49
51
50
52
///
51
53
/// Constructor.
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ internal class PlayAssetBundleRequestImpl : PlayAssetBundleRequest
25
25
private readonly AssetDeliveryUpdateHandler _updateHandler ;
26
26
private AssetDeliveryStatus _loadingStatus ;
27
27
private AssetDeliveryErrorCode _loadingError ;
28
- private float _downloadProgress ;
29
28
30
29
public PlayAssetBundleRequestImpl ( PlayAssetPackRequestImpl packRequest ,
31
30
AssetDeliveryUpdateHandler updateHandler )
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ internal class PlayAssetDeliveryInternal
34
34
private const string AssetPackFolderName = "assetpack" ;
35
35
36
36
private readonly AssetPackManager _assetPackManager ;
37
- private readonly AssetPackStateUpdateListener _stateUpdateListener ;
38
37
private readonly AssetDeliveryUpdateHandler _updateHandler ;
39
38
40
39
private readonly PlayRequestRepository _requestRepository = new PlayRequestRepository ( ) ;
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ public class AssetPackDownloader : MonoBehaviour
45
45
46
46
private AssetBundle _assetBundle ;
47
47
private PlayAssetPackRequest _request ;
48
- private List < Button > _buttons ;
49
48
private bool _requestInProgress ;
50
49
51
50
public bool IsInitialized { get ; private set ; }
Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ public class ScrollingFillAnimator : MonoBehaviour
32
32
public float ScrollSpeed = 2.5f ;
33
33
34
34
private RawImage _image ;
35
- private Vector2 _textureOffset ;
36
35
private RectTransform _rectTransform ;
37
36
38
37
private void Update ( )
Original file line number Diff line number Diff line change @@ -28,7 +28,10 @@ public class ReviewManager
28
28
/// href="https://developer.android.com/reference/com/google/android/play/core/review/model/ReviewErrorCode">
29
29
///
30
30
private const int JavaReviewErrorCodePlayNotFound = - 1 ;
31
+
32
+ #if ! UNITY_EDITOR
31
33
private readonly ReviewPlayCoreTaskManager _reviewPlayCoreTaskManager ;
34
+ #endif
32
35
33
36
public ReviewManager ( )
34
37
{
@@ -112,4 +115,4 @@ private PlayAsyncOperation LaunchReviewFlowInternal
112
115
}
113
116
#endif
114
117
}
115
- }
118
+ }
You can’t perform that action at this time.
0 commit comments